From c4ab65eb790b8b88d561f1cbcbda5afbabd93bfe Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 18 Feb 2022 21:18:36 +0100 Subject: [PATCH] Remove useless '\n' in log --- app/src/adb/adb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/adb/adb.c b/app/src/adb/adb.c index e415eb4f..8ce9cc6f 100644 --- a/app/src/adb/adb.c +++ b/app/src/adb/adb.c @@ -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; } @@ -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; }