1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-03 17:50:03 +03:00

dmsetup: fix invalid loop test

Last patcheds had incorrect merging bug - fix loop test.
This commit is contained in:
Zdenek Kabelac 2024-05-04 01:53:54 +02:00
parent d16a8f80e9
commit 09426b4663

View File

@ -6354,7 +6354,7 @@ static void _dmsetup_usage(FILE *out)
" [--separator <separator>]\n\n",
_base_commands[_base_command].name);
for (i = 0; DM_ARRAY_SIZE(_dmsetup_commands); i++)
for (i = 0; i < DM_ARRAY_SIZE(_dmsetup_commands); ++i)
fprintf(out, "\t%s %s\n", _dmsetup_commands[i].name, _dmsetup_commands[i].help);
fprintf(out, "\n<device> may be device name or (if only one) -u <uuid> or "