diff options
author | emax <emax@FreeBSD.org> | 2004-04-09 23:01:42 +0000 |
---|---|---|
committer | emax <emax@FreeBSD.org> | 2004-04-09 23:01:42 +0000 |
commit | 3513d3a4bf451f0df5b032f66e51942fa9a3bde8 (patch) | |
tree | fd0108eacca45da89afc49914a90d2c9665524c9 /lib/libsdp/util.c | |
parent | fd167b36d818bcc374e0c630333755132e7bc813 (diff) | |
download | FreeBSD-src-3513d3a4bf451f0df5b032f66e51942fa9a3bde8.zip FreeBSD-src-3513d3a4bf451f0df5b032f66e51942fa9a3bde8.tar.gz |
Make sure Bluetooth stuff can be compiled on amd64
Submitted by: ps
Diffstat (limited to 'lib/libsdp/util.c')
-rw-r--r-- | lib/libsdp/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libsdp/util.c b/lib/libsdp/util.c index 16e4dc9..ae41fb2 100644 --- a/lib/libsdp/util.c +++ b/lib/libsdp/util.c @@ -312,7 +312,7 @@ sdp_print(uint32_t level, uint8_t const *start, uint8_t const *end) break; case SDP_DATA_UINT64: SDP_GET64(value.uint64, start); - printf("uint64 %llu\n", value.uint64); + printf("uint64 %ju\n", value.uint64); break; case SDP_DATA_UINT128: @@ -342,7 +342,7 @@ sdp_print(uint32_t level, uint8_t const *start, uint8_t const *end) break; case SDP_DATA_INT64: SDP_GET64(value.int64, start); - printf("int64 %lld\n", value.int64); + printf("int64 %ju\n", value.int64); break; case SDP_DATA_UUID16: |