]> granicus.if.org Git - file/commitdiff
Eliminate extraneous \n in "broken symlink" message.
authorIan Darwin <ian@darwinsys.com>
Fri, 11 Sep 1992 12:52:46 +0000 (12:52 +0000)
committerIan Darwin <ian@darwinsys.com>
Fri, 11 Sep 1992 12:52:46 +0000 (12:52 +0000)
src/fsmagic.c

index 4ce2eb35715bd4979d9114fe7e042428e630baba..2b4104e6e8a255fca7af9de4363a080e6aa6cc98 100644 (file)
@@ -46,7 +46,7 @@
 
 #ifndef        lint
 static char *moduleid = 
-       "@(#)$Id: fsmagic.c,v 1.19 1992/09/11 12:37:43 ian Exp $";
+       "@(#)$Id: fsmagic.c,v 1.20 1992/09/11 12:52:46 ian Exp $";
 #endif /* lint */
 
 int
@@ -114,7 +114,7 @@ struct stat *sb;
                        /* If broken symlink, say so and quit early. */
                        if (stat(buf, &tstatbuf) < 0) {
                                ckfprintf(stdout,
-                                       "broken symbolic link to %s\n", buf);
+                                       "broken symbolic link to %s", buf);
                                return 1;
                        }