summaryrefslogtreecommitdiff
path: root/src/analysis/routine.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2010-06-06 14:13:36 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2010-06-06 14:13:36 (GMT)
commitaf7d2ea327d27200ad151d3e1ba0ee6d51b1ff62 (patch)
tree861b238ade106dff0adc62958d16e66eca10852e /src/analysis/routine.c
parentb5934203c1cb287eb46b07e866b54d1de240b87b (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
Diffstat (limited to 'src/analysis/routine.c')
-rw-r--r--src/analysis/routine.c2
1 files changed, 1 insertions, 1 deletions
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, " ");
}