From 66c016f3a79965fee20cf90c0f0d7b7f9061467b Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Wed, 9 Mar 2005 14:06:15 +0000 Subject: [PATCH] Fix builds with gcc version 4 - static vs extern in headers. Merge of master-melb:xfs-cmds:21773a by kenmcd. --- mkfile/xfs_mkfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkfile/xfs_mkfile.c b/mkfile/xfs_mkfile.c index a2d758975..28ee7d31f 100644 --- a/mkfile/xfs_mkfile.c +++ b/mkfile/xfs_mkfile.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved. + * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as @@ -39,7 +39,7 @@ #define MAXBUFFERSIZE (256 * 1024) -static char *progname; +char *progname; static void usage(void) -- 2.47.2