Skip to content

Commit

Permalink
Remove useless '\n' in log
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1v committed Feb 18, 2022
1 parent 6edf50d commit c4ab65e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/adb/adb.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ sc_adb_list_devices(struct sc_intr *intr, unsigned flags,
// The implementation assumes that the output of "adb devices -l" fits
// in the buffer in a single pass
LOGW("Result of \"adb devices -l\" does not fit in 4Kb. "
"Please report an issue.\n");
"Please report an issue.");
return -1;
}

Expand Down Expand Up @@ -676,7 +676,7 @@ sc_adb_get_device_ip(struct sc_intr *intr, const char *serial, unsigned flags) {
// The implementation assumes that the output of "ip route" fits in the
// buffer in a single pass
LOGW("Result of \"ip route\" does not fit in 1Kb. "
"Please report an issue.\n");
"Please report an issue.");
return NULL;
}

Expand Down

0 comments on commit c4ab65e

Please sign in to comment.