mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
command: refactor loop test for end of string
This commit is contained in:
parent
e1211d38a4
commit
0316dd7955
@ -1596,7 +1596,7 @@ static void _print_usage_description(struct command *cmd)
|
|||||||
unsigned di = 0;
|
unsigned di = 0;
|
||||||
int bi = 0;
|
int bi = 0;
|
||||||
|
|
||||||
for (di = 0; di < strlen(desc); di++) {
|
for (di = 0; desc[di]; di++) {
|
||||||
if (!strncmp(&desc[di], "DESC:", 5)) {
|
if (!strncmp(&desc[di], "DESC:", 5)) {
|
||||||
if (bi) {
|
if (bi) {
|
||||||
buf[bi] = '\0';
|
buf[bi] = '\0';
|
||||||
|
@ -993,7 +993,7 @@ static void _print_man_option_desc(struct command_name *cname, int opt_enum)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (di = 0; di < strlen(desc); di++) {
|
for (di = 0; desc[di]; di++) {
|
||||||
buf[bi++] = desc[di];
|
buf[bi++] = desc[di];
|
||||||
|
|
||||||
if (bi == DESC_LINE) {
|
if (bi == DESC_LINE) {
|
||||||
@ -1318,9 +1318,7 @@ static void _print_desc_man(const char *desc)
|
|||||||
unsigned di;
|
unsigned di;
|
||||||
int bi = 0;
|
int bi = 0;
|
||||||
|
|
||||||
for (di = 0; di < strlen(desc); di++) {
|
for (di = 0; desc[di]; di++) {
|
||||||
if (desc[di] == '\0')
|
|
||||||
break;
|
|
||||||
if (desc[di] == '\n')
|
if (desc[di] == '\n')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user