]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 331635 via svnmerge from
authorJonathan Rose <jrose@digium.com>
Fri, 12 Aug 2011 16:18:57 +0000 (16:18 +0000)
committerJonathan Rose <jrose@digium.com>
Fri, 12 Aug 2011 16:18:57 +0000 (16:18 +0000)
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/branches/10@331644 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_dial.c
apps/app_meetme.c

index 4b0d44f4383e509a9a2d32296afc8c829b249924..515fa1b3f69cc86bcd3251d89df5c3fb0221bae0 100644 (file)
@@ -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,
index e98be8da4692fa8ff7a8931102f07111fdcc7104..b4fa0972c03eea1e0c4722436c1a837a96840203 100644 (file)
@@ -630,9 +630,9 @@ enum {
 /* These flags are defined separately because we ran out of bits that an enum can be used to represent. 
    If you add new flags, be sure to do it in the same way that these are. */
 /*! Do not write any audio to this channel until the state is up. */
-#define CONFFLAG_NO_AUDIO_UNTIL_UP  (1UL << 31)
-#define CONFFLAG_INTROMSG           (1UL << 32) /*!< If set play an intro announcement at start of conference */
-#define CONFFLAG_INTROUSER_VMREC    (1UL << 33)
+#define CONFFLAG_NO_AUDIO_UNTIL_UP  (1ULL << 31)
+#define CONFFLAG_INTROMSG           (1ULL << 32) /*!< If set play an intro announcement at start of conference */
+#define CONFFLAG_INTROUSER_VMREC    (1ULL << 33)
 
 enum {
        OPT_ARG_WAITMARKED = 0,