Skip to content
Snippets Groups Projects
Commit 5704921f authored by ch's avatar ch
Browse files

Added a linefeed to an error message.

parent 97bfc4ab
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/coreparse.c,v 1.2 1990/03/28 22:49:20 ch Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/coreparse.c,v 1.3 1990/03/29 00:50:53 ch Exp $ */
#include <stdio.h> #include <stdio.h>
#include <mach.h> #include <mach.h>
#include <sys/types.h> #include <sys/types.h>
...@@ -79,7 +79,7 @@ char *file; ...@@ -79,7 +79,7 @@ char *file;
long header[CORE_PAGESIZE / sizeof(long)], val, len, *ptr; long header[CORE_PAGESIZE / sizeof(long)], val, len, *ptr;
if (fd < 0) { if (fd < 0) {
fprintf(stderr, "Could not open file \"%s\".", file); fprintf(stderr, "Could not open file \"%s\".\n", file);
perror("open"); perror("open");
exit(1); exit(1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment