forked from OSchip/llvm-project
Fix format compilation warning in PlatformAndroidRemoteGDBServer.cpp.
llvm-svn: 233041
This commit is contained in:
parent
705c449af5
commit
e4e481fbc9
|
@ -38,7 +38,7 @@ ForwardPortWithAdb (uint16_t port, std::string& device_id)
|
|||
return error;
|
||||
|
||||
if (connect_devices.size () != 1)
|
||||
return Error ("Expected a single connected device, got instead %" PRIu64, connect_devices.size ());
|
||||
return Error ("Expected a single connected device, got instead %zu", connect_devices.size ());
|
||||
|
||||
device_id = connect_devices.front ();
|
||||
if (log)
|
||||
|
|
Loading…
Reference in New Issue