1
0
mirror of https://frontier.innolan.net/rainlance/amiga-ntimed.git synced 2026-05-03 05:43:25 +00:00

A bit of signed/unsigned cleanup work.

This commit is contained in:
Poul-Henning Kamp
2015-01-16 21:21:15 +00:00
parent 76ccc26b27
commit 449dc16d47
10 changed files with 49 additions and 46 deletions

View File

@@ -121,7 +121,7 @@ simfile_readline(struct ocx *ocx, struct todolist *tdl, void *priv)
while (1) {
if (fgets(buf, sizeof buf, sf->input) == NULL) {
Debug(ocx, "EOF on -s file (%s)", sf->filename);
Debug(ocx, "EOF on -s file (%s)\n", sf->filename);
exit(0);
}
p = strchr(buf, '\r');