summaryrefslogtreecommitdiff
path: root/lib/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hash.c')
-rw-r--r--lib/hash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c
index 9ac65bb..4658aed 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -9,6 +9,7 @@
#include <string.h>
#include "hash.h"
#include "exceptions.h"
+#include "polynom.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#else
@@ -149,7 +150,7 @@ _TypeVariable NomVarToVar(char *Nom, _TableauVariable t, char *trouve)
void AfficheListe(_ListeChaine l)
{
while (l != NULL) {
- fprintf(stderr, "%s\n", l->Elem.NomVar);
+ fprintf(stderr, "%s: %s\n", l->Elem.NomVar, ply_affichage(l->Elem.Variable));
l = l->Suivant;
}
}