raster pushed a commit to branch efl-1.20. http://git.enlightenment.org/core/efl.git/commit/?id=8f02704a1e93a5c031f4cb29135f6f9dedeb675c
commit 8f02704a1e93a5c031f4cb29135f6f9dedeb675c Author: Prince Kumar Dubey <[email protected]> Date: Tue Oct 17 11:03:10 2017 -0700 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 <[email protected]> --- 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 83715c563d..62e5f80f01 100644 --- a/src/lib/elementary/elm_config.c +++ b/src/lib/elementary/elm_config.c @@ -798,7 +798,6 @@ _elm_config_derived_option_apply(Elm_Config *cfg, const char *option) char *bp = buf; p = option; - bp = buf; for (;;) { if ((*p == 0) || (*p == ' ')) --
