Commit e2b4d4908dcd8a146aeefd401a34b6f346705b99

Kano 2013-06-15T22:08:47

logging remove extra added <LF>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/logging.c b/logging.c
index 4361401..489fed2 100644
--- a/logging.c
+++ b/logging.c
@@ -34,7 +34,7 @@ static void my_log_curses(int prio, const char *datetime, const char *str)
 #endif
 	{
 		mutex_lock(&console_lock);
-		printf("%s%s%s\n", datetime, str, "                    \n");
+		printf("%s%s%s", datetime, str, "                    \n");
 		mutex_unlock(&console_lock);
 	}
 }