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.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/analysis/variable.c b/src/analysis/variable.c
index 87df60e..86fc4cc 100644
--- a/src/analysis/variable.c
+++ b/src/analysis/variable.c
@@ -234,18 +234,10 @@ void g_binary_variable_set_owner(GBinVariable *var, GOpenidaType *owner)
}
-
-
-
-
-
-
-
-
-
/******************************************************************************
* *
-* Paramètres : var = variable à convertir. *
+* Paramètres : var = variable à convertir. *
+* simple = indique si l'espace de noms doit être exclus ou non.*
* *
* Description : Décrit la variable donnée sous forme de caractères. *
* *
@@ -255,11 +247,11 @@ void g_binary_variable_set_owner(GBinVariable *var, GOpenidaType *owner)
* *
******************************************************************************/
-char *g_binary_variable_to_string(const GBinVariable *var)
+char *g_binary_variable_to_string(const GBinVariable *var, bool simple)
{
char *result; /* Valeur à retourner */
- result = g_openida_type_to_string(var->type);
+ result = _g_openida_type_to_string(var->type, simple);
if (var->name != NULL)
{