mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-14 07:39:37 +00:00
Suppress spurious error message in RSX format version.
This commit is contained in:
parent
6a6a9ee1eb
commit
06a780cb94
@ -88,7 +88,9 @@ char *readrec(
|
||||
|
||||
c = fgetc(fp);
|
||||
if (c == EOF) {
|
||||
#if RT11
|
||||
fprintf(stderr, "Improperly formatted OBJ file (3)\n");
|
||||
#endif /* RT11 */
|
||||
return NULL;
|
||||
}
|
||||
*len = c;
|
||||
@ -145,7 +147,7 @@ char *readrec(
|
||||
c = fgetc(fp);
|
||||
if (c == EOF) {
|
||||
free(buf);
|
||||
fprintf(stderr, "EOF where padding byte should be");
|
||||
fprintf(stderr, "EOF where padding byte should be\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user