diff options
-rw-r--r-- | ufs-fsck/main.c | 4 | ||||
-rw-r--r-- | ufs-utils/mkfs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ufs-fsck/main.c b/ufs-fsck/main.c index ed651795..34c32a67 100644 --- a/ufs-fsck/main.c +++ b/ufs-fsck/main.c @@ -1,5 +1,5 @@ /* Main program for GNU fsck - Copyright (C) 1994, 1996 Free Software Foundation, Inc. + Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -25,7 +25,7 @@ #include "fsck.h" -char *argp_program_version = STANDARD_HURD_VERSION (fsck.ufs); +const char *argp_program_version = STANDARD_HURD_VERSION (fsck.ufs); char *lfname = "lost+found"; mode_t lfmode = 0755; diff --git a/ufs-utils/mkfs.c b/ufs-utils/mkfs.c index de8c712e..b6303e86 100644 --- a/ufs-utils/mkfs.c +++ b/ufs-utils/mkfs.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)mkfs.c 8.3 (Berkeley) 2/3/94";*/ -static char *rcsid = "$Id: mkfs.c,v 1.15 1996/09/05 16:59:14 thomas Exp $"; +static char *rcsid = "$Id: mkfs.c,v 1.16 1997/02/20 04:15:02 miles Exp $"; #endif /* not lint */ #include <unistd.h> @@ -164,7 +164,7 @@ struct dinode zino[MAXBSIZE / sizeof(struct dinode)]; int fsi, fso; daddr_t alloc(); -char *argp_program_version = STANDARD_HURD_VERSION (mkfs.ufs); +const char *argp_program_version = STANDARD_HURD_VERSION (mkfs.ufs); #define _STRINGIFY(arg) #arg #define STRINGIFY(arg) _STRINGIFY (arg) |