Change printf formatting to unbroke i386 arch.

Submitted by:david@catwhisker.org
This commit is contained in:
Takanori Watanabe 2015-04-18 16:04:32 +00:00
parent 94d014f079
commit 4315b1cb29
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281690

View File

@ -232,7 +232,7 @@ le_read_local_supported_features(int s, int argc ,char *argv[])
NG_HCI_OCF_LE_READ_LOCAL_SUPPORTED_FEATURES),
(void *)&rp, &n);
printf("LOCAL SUPPORTED: %d %d %lu\n", e, rp.status,
printf("LOCAL SUPPORTED: %d %d %jx\n", e, rp.status,
rp.le_features);
return 0;
@ -250,7 +250,7 @@ le_read_supported_status(int s, int argc, char *argv[])
NG_HCI_OCF_LE_READ_SUPPORTED_STATUS),
(void *)&rp, &n);
printf("LE_STATUS: %d %d %lx\n", e, rp.status, rp.le_status);
printf("LE_STATUS: %d %d %jx\n", e, rp.status, rp.le_status);
return 0;
}