From f22dec044202909b651cc26831003ad2b5aca2db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Tue, 21 Dec 2010 15:51:07 +0100 Subject: [PATCH] Silenced warnings for formats in ntfsfix.c --- ntfsprogs/ntfsfix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfsprogs/ntfsfix.c b/ntfsprogs/ntfsfix.c index 1d5615db..531c2959 100644 --- a/ntfsprogs/ntfsfix.c +++ b/ntfsprogs/ntfsfix.c @@ -81,8 +81,8 @@ switch if you want to be able to build the NTFS utilities." #endif static const char *EXEC_NAME = "ntfsfix"; -static const char *OK = "OK\n"; -static const char *FAILED = "FAILED\n"; +static const char OK[] = "OK\n"; +static const char FAILED[] = "FAILED\n"; static struct { char *volume;