mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
dmsetup: fix invalid loop test
Last patcheds had incorrect merging bug - fix loop test.
This commit is contained in:
parent
d16a8f80e9
commit
09426b4663
@ -6354,7 +6354,7 @@ static void _dmsetup_usage(FILE *out)
|
|||||||
" [--separator <separator>]\n\n",
|
" [--separator <separator>]\n\n",
|
||||||
_base_commands[_base_command].name);
|
_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, "\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 "
|
fprintf(out, "\n<device> may be device name or (if only one) -u <uuid> or "
|
||||||
|
Loading…
Reference in New Issue
Block a user