aboutsummaryrefslogtreecommitdiffstats
path: root/extcap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-04-11 13:17:11 -0700
committerGuy Harris <guy@alum.mit.edu>2015-04-11 20:17:35 +0000
commitffe99c06ec31cf9137244a4fb4f2828826238ca4 (patch)
tree3cad559ca5df90c80ef1ac6f47d361fe257f7d91 /extcap
parent3195a20eefa3c6601ce616bf870b846102a9350e (diff)
Use G_GUINT64_CONSTANT() to make a guint64_t (or uint64_t) constant.
Don't assume "UL" is good enough; long is 32 bits on ILP32 platforms. Change-Id: If235e2e49afcbfff7d5289cafe24cf5cc01358e4 Reviewed-on: https://code.wireshark.org/review/8019 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'extcap')
-rw-r--r--extcap/androiddump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extcap/androiddump.c b/extcap/androiddump.c
index 874f0e4167..a15ff1a016 100644
--- a/extcap/androiddump.c
+++ b/extcap/androiddump.c
@@ -1217,7 +1217,7 @@ static int capture_android_bluetooth_hcidump(char *interface, char *fifo,
#define BLUEDROID_TIMESTAMP_SIZE 8
#define BLUEDROID_H4_SIZE 1
-static const uint64_t BLUEDROID_TIMESTAMP_BASE = 0x00dcddb30f2f8000UL;
+static const uint64_t BLUEDROID_TIMESTAMP_BASE = G_GUINT64_CONSTANT(0x00dcddb30f2f8000);
#define BLUEDROID_H4_PACKET_TYPE_HCI_CMD 0x01
#define BLUEDROID_H4_PACKET_TYPE_ACL 0x02
@@ -1479,7 +1479,7 @@ static int capture_android_bluetooth_btsnoop_net(char *interface, char *fifo,
int result;
char *serial_number = NULL;
uint64_t ts;
- static const uint64_t BTSNOOP_TIMESTAMP_BASE = 0x00dcddb30f2f8000UL;
+ static const uint64_t BTSNOOP_TIMESTAMP_BASE = G_GUINT64_CONSTANT(0x00dcddb30f2f8000);
uint32_t *reported_length;
uint32_t *captured_length;
uint32_t *flags;