summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-08-12 18:03:29 +0000
committerJonathan Rose <jrose@digium.com>2011-08-12 18:03:29 +0000
commit39fe851e7961357f7f86f3d7f117f4c2e20dd646 (patch)
tree44afda8c1e237230d913aad5028799015f4c53a4 /apps/app_dial.c
parent452f198609673ba60687f425bdd43cfb9e04d2ec (diff)
Merged revisions 331644 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r331644 | jrose | 2011-08-12 11:18:57 -0500 (Fri, 12 Aug 2011) | 9 lines Merged revisions 331635 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r331635 | jrose | 2011-08-12 10:49:17 -0500 (Fri, 12 Aug 2011) | 1 line Fixes 32bit compilation warnings brought on by 331634 in app_dial and app_meetme ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@331717 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dial.c')
-rw-r--r--apps/app_dial.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 4b0d44f43..515fa1b3f 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -556,16 +556,16 @@ enum {
};
/* flags are now 64 bits, so keep it up! */
-#define DIAL_STILLGOING (1LU << 31)
-#define DIAL_NOFORWARDHTML (1LU << 32)
-#define DIAL_CALLERID_ABSENT (1LU << 33) /* TRUE if caller id is not available for connected line. */
-#define OPT_CANCEL_ELSEWHERE (1LU << 34)
-#define OPT_PEER_H (1LU << 35)
-#define OPT_CALLEE_GO_ON (1LU << 36)
-#define OPT_CANCEL_TIMEOUT (1LU << 37)
-#define OPT_FORCE_CID_TAG (1LU << 38)
-#define OPT_FORCE_CID_PRES (1LU << 39)
-#define OPT_CALLER_ANSWER (1LU << 40)
+#define DIAL_STILLGOING (1LLU << 31)
+#define DIAL_NOFORWARDHTML (1LLU << 32)
+#define DIAL_CALLERID_ABSENT (1LLU << 33) /* TRUE if caller id is not available for connected line. */
+#define OPT_CANCEL_ELSEWHERE (1LLU << 34)
+#define OPT_PEER_H (1LLU << 35)
+#define OPT_CALLEE_GO_ON (1LLU << 36)
+#define OPT_CANCEL_TIMEOUT (1LLU << 37)
+#define OPT_FORCE_CID_TAG (1LLU << 38)
+#define OPT_FORCE_CID_PRES (1LLU << 39)
+#define OPT_CALLER_ANSWER (1LLU << 40)
enum {
OPT_ARG_ANNOUNCE = 0,