Skip to content

Commit e62e803

Browse files
committed
Fix format string to match number of arguments passed.
1 parent bcf88a8 commit e62e803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Bluefruit52Lib/src/BLEDiscovery.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ bool BLEDiscovery::_discoverService(uint16_t conn_handle, BLEClientService& svc,
8484
// timeout or has no data (due to GATT Error)
8585
if ( bytecount <= 0 )
8686
{
87-
LOG_LV1("DISC", "[SVC] timeout or error", start_handle);
87+
LOG_LV1("DISC", "[SVC] timeout or error %ud", start_handle);
8888
return false;
8989
}
9090

0 commit comments

Comments
 (0)