Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Apr 2015 17:41:09 +0000 (UTC)
From:      Takanori Watanabe <takawata@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r281697 - head/usr.sbin/bluetooth/hccontrol
Message-ID:  <201504181741.t3IHf9tL089141@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: takawata
Date: Sat Apr 18 17:41:09 2015
New Revision: 281697
URL: https://svnweb.freebsd.org/changeset/base/281697

Log:
  To ensure j formatting string valid, cast uint64_t values to uintmax_t.

Modified:
  head/usr.sbin/bluetooth/hccontrol/le.c

Modified: head/usr.sbin/bluetooth/hccontrol/le.c
==============================================================================
--- head/usr.sbin/bluetooth/hccontrol/le.c	Sat Apr 18 17:21:12 2015	(r281696)
+++ head/usr.sbin/bluetooth/hccontrol/le.c	Sat Apr 18 17:41:09 2015	(r281697)
@@ -43,6 +43,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <stdint.h>
 #define L2CAP_SOCKET_CHECKED
 #include <bluetooth.h>
 #include "hccontrol.h"
@@ -233,7 +234,7 @@ le_read_local_supported_features(int s, 
 			(void *)&rp, &n);
 
 	printf("LOCAL SUPPORTED: %d %d %jx\n", e, rp.status,
-			rp.le_features);
+	       (uintmax_t) rp.le_features);
 
 	return 0;
 }
@@ -250,7 +251,7 @@ le_read_supported_status(int s, int argc
 					NG_HCI_OCF_LE_READ_SUPPORTED_STATUS),
 			       		(void *)&rp, &n);
 
-	printf("LE_STATUS: %d %d %jx\n", e, rp.status, rp.le_status);
+	printf("LE_STATUS: %d %d %jx\n", e, rp.status, (uintmax_t)rp.le_status);
 
 	return 0;
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504181741.t3IHf9tL089141>