1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-13 16:27:54 +00:00

logging remove extra added <LF>

This commit is contained in:
Kano 2013-06-15 22:08:47 +10:00
parent 7eba963477
commit e2b4d4908d

View File

@ -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);
}
}