Suppress spurious error message in RSX format version.

This commit is contained in:
Olaf Seibert 2015-05-19 21:15:24 +02:00
parent 6a6a9ee1eb
commit 06a780cb94

View File

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