diff options
Diffstat (limited to 'fastboot/protocol.cpp')
-rw-r--r-- | fastboot/protocol.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fastboot/protocol.cpp b/fastboot/protocol.cpp index 8c20262e5..a08956749 100644 --- a/fastboot/protocol.cpp +++ b/fastboot/protocol.cpp @@ -75,13 +75,13 @@ static int64_t check_response(Transport* transport, uint32_t size, char* respons } if (!memcmp(status, "INFO", 4)) { - verbose("received INFO %s", status + 4); + verbose("received INFO \"%s\"", status + 4); fprintf(stderr, "(bootloader) %s\n", status + 4); continue; } if (!memcmp(status, "OKAY", 4)) { - verbose("received OKAY %s", status + 4); + verbose("received OKAY \"%s\"", status + 4); if (response) { strcpy(response, status + 4); } @@ -89,7 +89,7 @@ static int64_t check_response(Transport* transport, uint32_t size, char* respons } if (!memcmp(status, "FAIL", 4)) { - verbose("received FAIL %s", status + 4); + verbose("received FAIL \"%s\"", status + 4); if (r > 4) { g_error = android::base::StringPrintf("remote: %s", status + 4); } else { |