diff options
Diffstat (limited to '')
-rw-r--r-- | src/bin/eolian/eo1_generator.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/eolian/eo1_generator.c b/src/bin/eolian/eo1_generator.c index 3853a7219c..2f3b8e063f 100644 --- a/src/bin/eolian/eo1_generator.c +++ b/src/bin/eolian/eo1_generator.c | |||
@@ -331,8 +331,10 @@ _varg_upgr(const char *stype) | |||
331 | { | 331 | { |
332 | if (!strcmp(stype, "Eina_Bool") || | 332 | if (!strcmp(stype, "Eina_Bool") || |
333 | !strcmp(stype, "char") || | 333 | !strcmp(stype, "char") || |
334 | !strcmp(stype, "short")) | 334 | !strcmp(stype, "short") || |
335 | !strcmp(stype, "unsigned short")) | ||
335 | return "int"; | 336 | return "int"; |
337 | |||
336 | return stype; | 338 | return stype; |
337 | } | 339 | } |
338 | 340 | ||