]> granicus.if.org Git - file/commitdiff
Add missing \n in local error() - noticed by wef@sq.
authorIan Darwin <ian@darwinsys.com>
Wed, 14 Oct 1987 08:36:55 +0000 (08:36 +0000)
committerIan Darwin <ian@darwinsys.com>
Wed, 14 Oct 1987 08:36:55 +0000 (08:36 +0000)
src/print.c

index 6d9347c046ae8ada15398220e33598af3ab14f73..17075ae3e9941ac7b26e27b2d510fbad9ebf3d20 100644 (file)
@@ -31,7 +31,7 @@
 
 #ifndef        lint
 static char *moduleid = 
-       "@(#)$Header: /home/glen/git/file/cvs/file/src/print.c,v 1.6 1987/09/16 22:50:15 ian Exp $";
+       "@(#)$Header: /home/glen/git/file/cvs/file/src/print.c,v 1.7 1987/10/14 08:36:55 ian Exp $";
 #endif /* lint */
 
 #define MAXSTR         500
@@ -84,4 +84,5 @@ char *f, *a;
        (void) fprintf(stderr, f, a);
        if (myerrno > 0 && myerrno < sys_nerr)
                (void) fprintf(stderr, " (%s)", sys_errlist[myerrno]);
+       putc('\n', stderr);
 }