summaryrefslogtreecommitdiff
path: root/src/analysis/variable.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/variable.c')
-rw-r--r--src/analysis/variable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/variable.c b/src/analysis/variable.c
index 932d165..2da691d 100644
--- a/src/analysis/variable.c
+++ b/src/analysis/variable.c
@@ -251,12 +251,12 @@ char *g_binary_variable_to_string(const GBinVariable *var, bool simple)
{
char *result; /* Valeur à retourner */
- result = _g_openida_type_to_string(var->type, simple);
+ result = strdup(""); /* FIXME : arg _g_openida_type_to_string(var->type, simple);*/
if (var->name != NULL)
{
if (!g_openida_type_is_pointer(var->type, true))
- result = stradd(result, " ");
+ /*result = stradd(result, " ")*/;
result = stradd(result, var->name);