1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

cleanup: indent mismatch

Aling break (Coverity).
This commit is contained in:
Zdenek Kabelac 2015-05-07 11:00:23 +02:00
parent 28f18404a7
commit b8dfd7a53d

View File

@ -1270,7 +1270,7 @@ static int _do_check_value_is_reserved(unsigned type, const void *reserved_value
if ((*(uint64_t *)value1 == *(uint64_t *) reserved_value) || if ((*(uint64_t *)value1 == *(uint64_t *) reserved_value) ||
(value2 && (*(uint64_t *)value2 == *(uint64_t *) reserved_value))) (value2 && (*(uint64_t *)value2 == *(uint64_t *) reserved_value)))
return 1; return 1;
break; break;
case DM_REPORT_FIELD_TYPE_STRING: case DM_REPORT_FIELD_TYPE_STRING:
if ((!strcmp((const char *)value1, (const char *) reserved_value)) || if ((!strcmp((const char *)value1, (const char *) reserved_value)) ||
(value2 && (!strcmp((const char *)value2, (const char *) reserved_value)))) (value2 && (!strcmp((const char *)value2, (const char *) reserved_value))))