elementary: fix double assignment
authorPrince Kumar Dubey <prince.dubey@samsung.com>
Tue, 17 Oct 2017 18:03:10 +0000 (11:03 -0700)
committerCedric Bail <cedric@osg.samsung.com>
Tue, 17 Oct 2017 18:03:24 +0000 (11:03 -0700)
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 <cedric@osg.samsung.com>
src/lib/elementary/elm_config.c

index da198ea..cfbfc0f 100644 (file)
@@ -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 == ' '))