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

cov: fix typo

Avoid double assing same value.
This commit is contained in:
Zdenek Kabelac 2018-10-15 15:11:34 +02:00
parent eb566e034f
commit a7298810d1

View File

@ -184,7 +184,7 @@ static bool _parse_field(const char **b, const char *e,
bool dm_vdo_status_parse(struct dm_pool *mem, const char *input,
struct dm_vdo_status_parse_result *result)
{
const char *b = b = input;
const char *b = input;
const char *e = input + strlen(input);
const char *te;
struct dm_vdo_status *s;