mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 05:38:33 +03:00
fix newline \n\r with \r\n
This commit is contained in:
@@ -439,7 +439,7 @@ signed int vfprintf(FILE *pStream, const char *pFormat, va_list ap)
|
||||
return rc;
|
||||
}
|
||||
if (rc >= MAX_STRING_SIZE) {
|
||||
fputs("stdio.c: increase MAX_STRING_SIZE\n\r", stderr);
|
||||
fputs("stdio.c: increase MAX_STRING_SIZE\r\n", stderr);
|
||||
return rc;
|
||||
}
|
||||
|
||||
@@ -469,7 +469,7 @@ signed int vfprintf_sync(FILE *pStream, const char *pFormat, va_list ap)
|
||||
return rc;
|
||||
}
|
||||
if (rc >= MAX_STRING_SIZE) {
|
||||
fputs_sync("stdio.c: increase MAX_STRING_SIZE\n\r", stderr);
|
||||
fputs_sync("stdio.c: increase MAX_STRING_SIZE\r\n", stderr);
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user