e - expand printf to use unused params to silence warning

if bluetooth not found we get warnings. silence!
This commit is contained in:
Carsten Haitzler 2019-01-12 11:03:10 +00:00
parent 70b7d56ea5
commit d68cb82a32
1 changed files with 1 additions and 1 deletions

View File

@ -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
}