From d68cb82a32ffcfa77ce2d18a2a63cba76bc2ea26 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 12 Jan 2019 11:03:10 +0000 Subject: [PATCH] e - expand printf to use unused params to silence warning if bluetooth not found we get warnings. silence! --- src/bin/e_sys_l2ping.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_sys_l2ping.c b/src/bin/e_sys_l2ping.c index 731ea386a..f465dc787 100644 --- a/src/bin/e_sys_l2ping.c +++ b/src/bin/e_sys_l2ping.c @@ -167,7 +167,7 @@ e_sys_l2ping(const char *bluetooth_mac, int timeout_ms) return ecore_time_get() - start; #else (void) bluetooth_mac; - fprintf(stderr, "e_sys_l2ping nop %s\n", bluetooth_mac); + fprintf(stderr, "e_sys_l2ping nop mac=%s timeout=%ims\n", bluetooth_mac, timeout_ms); return -1; #endif }