diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-06-11 16:41:32 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-06-11 16:41:32 +0100 |
commit | 3c3e52440bbb08d86bcd34ad076e096ed29d1b7d (patch) | |
tree | 853cde1919bd0945235dc8f57af96bc66abb055f /src | |
parent | adbe4dcc0632499c48eff00f127c7c75b75ab08a (diff) |
eolian: fix a bug in expr serializer with wrong sign insertion
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/eolian/database_expr_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eolian/database_expr_api.c b/src/lib/eolian/database_expr_api.c index abc9fda064..eb0d119d68 100644 --- a/src/lib/eolian/database_expr_api.c +++ b/src/lib/eolian/database_expr_api.c | |||
@@ -219,7 +219,7 @@ static const char *_binops[] = { | |||
219 | }; | 219 | }; |
220 | 220 | ||
221 | static const char *_unops[] = { | 221 | static const char *_unops[] = { |
222 | "+", "-", "!", "~" | 222 | "-", "+", "!", "~" |
223 | }; | 223 | }; |
224 | 224 | ||
225 | static Eina_Bool | 225 | static Eina_Bool |