diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-06-06 14:13:36 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-06-06 14:13:36 (GMT) |
commit | af7d2ea327d27200ad151d3e1ba0ee6d51b1ff62 (patch) | |
tree | 861b238ade106dff0adc62958d16e66eca10852e | |
parent | b5934203c1cb287eb46b07e866b54d1de240b87b (diff) |
Fixed a bug: forget the return type when dealing with converting options.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@166 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/analysis/routine.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 10-06-06 Cyrille Bagard <nocbos@gmail.com> + * src/analysis/routine.c: + Fix a bug: forget the return type when dealing with converting options. + +10-06-06 Cyrille Bagard <nocbos@gmail.com> + * pixmaps/Makefile.am: Add more pictures to EXTRA_DIST and oidapix_DATA. diff --git a/src/analysis/routine.c b/src/analysis/routine.c index 8db366d..7709fa4 100644 --- a/src/analysis/routine.c +++ b/src/analysis/routine.c @@ -640,7 +640,7 @@ char *_g_binary_routine_to_string(const GBinRoutine *routine, Routine2StringOpti if (routine->ret_type == NULL) result = strdup("??? "); else { - result = g_openida_type_to_string(routine->ret_type); + result = _g_openida_type_to_string(routine->ret_type, !(options & RSO_LONG_TYPE)); if (!g_openida_type_is_pointer(routine->ret_type, true)) result = stradd(result, " "); } |