From 28ce98c411d6c8c082b2ba2d1ea5909d44e8ce2a Mon Sep 17 00:00:00 2001 From: Prince Kumar Dubey Date: Tue, 17 Oct 2017 11:03:10 -0700 Subject: [PATCH] elementary: fix double assignment Summary: local variable "bp" assigned twice unnecessarily. The duplicate assignment is removed. Reviewers: raster, cedric, jpeg Subscribers: jpeg, rajeshps Differential Revision: https://phab.enlightenment.org/D5323 Signed-off-by: Cedric Bail --- src/lib/elementary/elm_config.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c index da198ea..cfbfc0f 100644 --- a/src/lib/elementary/elm_config.c +++ b/src/lib/elementary/elm_config.c @@ -797,7 +797,6 @@ _elm_config_derived_option_apply(Elm_Config *cfg, const char *option) char *bp = buf; p = option; - bp = buf; for (;;) { if ((*p == 0) || (*p == ' ')) -- 2.7.4