From: Gowtham Anandha Babu Date: Thu, 5 Feb 2015 07:20:58 +0000 (+0530) Subject: test/bluetooth-frwk-test: Fix format specifier issue X-Git-Tag: submit/tizen_mobile/20150401.025717~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd07db267afd25e549a251bb70c14434623a457c;p=platform%2Fcore%2Fconnectivity%2Fbluetooth-frwk.git test/bluetooth-frwk-test: Fix format specifier issue Fixed the following warning: [test/bluetooth-frwk-test.c:755]: (warning) %d in format string (no. 3) requires a signed integer given in the argument list. Change-Id: I152ac0097966edbeec3100740f2248bc022a64f3 Signed-off-by: Gowtham Anandha Babu --- diff --git a/test/bluetooth-frwk-test.c b/test/bluetooth-frwk-test.c index 4bd99be..78b17b0 100644 --- a/test/bluetooth-frwk-test.c +++ b/test/bluetooth-frwk-test.c @@ -752,7 +752,7 @@ int test_input_callback(void *data) if (ret < 0) TC_PRT("failed with [0x%04x]", ret); - TC_PRT("volume: %d", volume); + TC_PRT("volume: %u", volume); break; } case 38: