From a7298810d1fd0f64be3fd903e9f9fcce9af7b84c Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Mon, 15 Oct 2018 15:11:34 +0200 Subject: [PATCH] cov: fix typo Avoid double assing same value. --- device_mapper/vdo/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_mapper/vdo/status.c b/device_mapper/vdo/status.c index 6831195e2..c86c91103 100644 --- a/device_mapper/vdo/status.c +++ b/device_mapper/vdo/status.c @@ -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; -- 2.43.5