Simplify function readline()

- Removed forgotten bracket
This commit is contained in:
e9hack 2024-11-30 09:37:56 +01:00
parent d63cf7b747
commit cce3c88807

2
io.c
View file

@ -58,7 +58,7 @@ int readline(PTSTREAM *pts) {
if ( args_info.verbose_flag )
/* print an additional newline if the string doesn't end with a newline */
message( c == '\n' ? " <- %s" : " <- %s\n", buf);
}
return len;
}