diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-02-12 22:28:03 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-02-12 22:28:03 +0000 |
commit | a3080929e9d7b1a77d9a5f7d70f9964d5ed229f3 (patch) | |
tree | 901590ed29a9617126dec7a5caeba62f5049b35f /sbin/tunefs | |
parent | 8927fbdec13d9964e3bcbffcbc8b3fe07357969e (diff) |
while im here; clean -Wall.
Diffstat (limited to 'sbin/tunefs')
-rw-r--r-- | sbin/tunefs/tunefs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/tunefs/tunefs.c b/sbin/tunefs/tunefs.c index 837db967fc6..c8c140bff52 100644 --- a/sbin/tunefs/tunefs.c +++ b/sbin/tunefs/tunefs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tunefs.c,v 1.17 2002/02/12 22:22:32 fgsch Exp $ */ +/* $OpenBSD: tunefs.c,v 1.18 2002/02/12 22:28:02 fgsch Exp $ */ /* $NetBSD: tunefs.c,v 1.10 1995/03/18 15:01:31 cgd Exp $ */ /* @@ -35,7 +35,7 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1983, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ @@ -44,7 +44,8 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)tunefs.c 8.2 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: tunefs.c,v 1.17 2002/02/12 22:22:32 fgsch Exp $"; +static const char rcsid[] = + "$OpenBSD: tunefs.c,v 1.18 2002/02/12 22:28:02 fgsch Exp $"; #endif #endif /* not lint */ |