diff options
author | phk <phk@FreeBSD.org> | 2009-04-05 13:48:06 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2009-04-05 13:48:06 +0000 |
commit | e48abfcaf0db4b971f5b49e08c0cc2d1b470e460 (patch) | |
tree | 785b04740ed00c7998aa170cf8c5a93fef1b0643 /sbin | |
parent | 30f1c1184a5ef994c6ac5facae5369990bacc998 (diff) | |
download | FreeBSD-src-e48abfcaf0db4b971f5b49e08c0cc2d1b470e460.zip FreeBSD-src-e48abfcaf0db4b971f5b49e08c0cc2d1b470e460.tar.gz |
Remove newlines from string argument of __COPYRIGHT(), it results in
assembler warning messages.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/routed/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/routed/main.c b/sbin/routed/main.c index 674d232..a70e66f 100644 --- a/sbin/routed/main.c +++ b/sbin/routed/main.c @@ -38,9 +38,9 @@ #include <fcntl.h> #include <sys/file.h> -__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n" +__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993 " "The Regents of the University of California." - " All rights reserved.\n"); + " All rights reserved."); #ifdef __NetBSD__ __RCSID("$NetBSD$"); #include <util.h> |