diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-08-25 12:57:26 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-08-25 12:57:26 +0900 |
commit | f5f27afee0530356a96d10c34d375ebb2f0a5640 (patch) | |
tree | 155bad522cfab753121ad32b357c7947c9bf87a1 /src/bin/edje | |
parent | 75a04d6c7f006c34a09f30d00fc96c9beb97f961 (diff) |
epp - fix unused pointer var bug
fix CID 1039493
Diffstat (limited to 'src/bin/edje')
-rw-r--r-- | src/bin/edje/epp/cpplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c index 5891436bce..5f2fc21d76 100644 --- a/src/bin/edje/epp/cpplib.c +++ b/src/bin/edje/epp/cpplib.c | |||
@@ -2427,7 +2427,7 @@ special_symbol(HASHNODE * hp, cpp_reader * pfile) | |||
2427 | } | 2427 | } |
2428 | if (!is_idstart[*ip->cur]) | 2428 | if (!is_idstart[*ip->cur]) |
2429 | goto oops; | 2429 | goto oops; |
2430 | if ((hp = cpp_lookup((const char *)ip->cur, -1, -1))) | 2430 | if (cpp_lookup((const char *)ip->cur, -1, -1)) |
2431 | { | 2431 | { |
2432 | buf = " 1 "; | 2432 | buf = " 1 "; |
2433 | } | 2433 | } |