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 <kzak@redhat.com>
{
struct wipe_control ctl = { .devname = NULL };
int c;
+ size_t i;
char *outarg = NULL;
enum {
OPT_LOCK = CHAR_MAX + 1,
/* 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);