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 /usr.sbin/bluetooth/l2ping | |
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 'usr.sbin/bluetooth/l2ping')
-rw-r--r-- | usr.sbin/bluetooth/l2ping/l2ping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bluetooth/l2ping/l2ping.c b/usr.sbin/bluetooth/l2ping/l2ping.c index 1caa93b..56d8ff6 100644 --- a/usr.sbin/bluetooth/l2ping/l2ping.c +++ b/usr.sbin/bluetooth/l2ping/l2ping.c @@ -267,7 +267,7 @@ usage(void) fprintf(stderr, "\t-f - No delay (soft of flood)\n"); fprintf(stderr, "\t-i wait - Delay between packets (sec)\n"); fprintf(stderr, "\t-s size - Packet size (bytes), " \ - "between %d and %d\n", sizeof(int32_t), NG_L2CAP_MAX_ECHO_SIZE); + "between %zd and %zd\n", sizeof(int32_t), NG_L2CAP_MAX_ECHO_SIZE); fprintf(stderr, "\t-h - Display this message\n"); exit(255); |