summaryrefslogtreecommitdiff
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index e98be8da4..b4fa0972c 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -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,