1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 10:25:13 +03:00

cleanup: matching signess

This commit is contained in:
Zdenek Kabelac 2018-03-11 21:08:07 +01:00
parent 49a8c786d5
commit e9cadbe105
2 changed files with 4 additions and 3 deletions

2
lib/cache/lvmetad.c vendored
View File

@ -1677,7 +1677,7 @@ int lvmetad_pv_found(struct cmd_context *cmd, const struct id *pvid, struct devi
if (vg && result) {
seqno_after = daemon_reply_int(reply, "seqno_after", -1);
if ((seqno_after != vg->seqno) ||
if ((seqno_after != (int) vg->seqno) ||
(seqno_after != daemon_reply_int(reply, "seqno_before", -1)))
log_warn("WARNING: Inconsistent metadata found for VG %s", vg->name);
}

View File

@ -2927,7 +2927,8 @@ static void _print_man_option_desc(struct command_name *cname, int opt_enum)
char buf[DESC_LINE];
int started_cname = 0;
int line_count = 0;
int di, bi = 0;
int bi = 0;
unsigned di;
if (desc[0] != '#') {
printf("%s", desc);
@ -3246,7 +3247,7 @@ static void _print_man_all_positions_desc(struct command_name *cname)
static void _print_desc_man(const char *desc)
{
char buf[DESC_LINE] = {0};
int di = 0;
unsigned di;
int bi = 0;
for (di = 0; di < strlen(desc); di++) {