summaryrefslogtreecommitdiff
path: root/lib/hash.c
diff options
context:
space:
mode:
authorbiouman <biouman>2001-05-01 09:48:02 +0000
committerbiouman <biouman>2001-05-01 09:48:02 +0000
commit6b8f02426a4dd9358c7b35d34268db358fd113c3 (patch)
treeb1f2af48fa2c6563ee7f3beef4163a0ff56232ef /lib/hash.c
parent9636d6739ebf330ef3fcc41ae838068e600c140b (diff)
*** empty log message ***
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;
}
}