From df0836dc90cde2bb8333f2f50574f55579527608 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 20 Jan 2021 09:20:54 +0100 Subject: [PATCH] wipefs: fix compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit misc-utils/wipefs.c: In function ‘main’: misc-utils/wipefs.c:838:3: error: ‘for’ loop initial declarations are only allowed in C99 mode misc-utils/wipefs.c:838:3: note: use option -std=c99 or -std=gnu99 to compile your code Signed-off-by: Karel Zak --- misc-utils/wipefs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc-utils/wipefs.c b/misc-utils/wipefs.c index 77dfe6a28..1b265b48c 100644 --- a/misc-utils/wipefs.c +++ b/misc-utils/wipefs.c @@ -684,6 +684,7 @@ main(int argc, char **argv) { struct wipe_control ctl = { .devname = NULL }; int c; + size_t i; char *outarg = NULL; enum { OPT_LOCK = CHAR_MAX + 1, @@ -835,7 +836,7 @@ main(int argc, char **argv) /* Re-read partition tables on whole-disk devices. This is * postponed until all is done to avoid conflicts. */ - for (size_t i = 0; i < ctl.nrereads; i++) { + for (i = 0; i < ctl.nrereads; i++) { char *devname = ctl.reread[i]; int fd = open(devname, O_RDONLY);