summaryrefslogtreecommitdiff
path: root/lib/hash.c
diff options
context:
space:
mode:
authorPixel <>2001-04-15 03:27:30 +0000
committerPixel <>2001-04-15 03:27:30 +0000
commit9e44b6dca12c57022d66bd1fe7e9b50c3d741389 (patch)
tree2de7e6bc1319651403b12fd9341ff3be4c0aca8a /lib/hash.c
parentba6d5b2571acd4010c929901b490bcd836c4ca3c (diff)
Compilo
Diffstat (limited to 'lib/hash.c')
-rw-r--r--lib/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hash.c b/lib/hash.c
index bd406c8..6d890f7 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -140,7 +140,7 @@ _TypeVariable NomVarToVar(char *Nom, _TableauVariable t, char *trouve)
void AfficheListe(_ListeChaine l)
{
while (l != NULL) {
- printf("%s\n", l->Elem.NomVar);
+ fprintf(stderr, "%s\n", l->Elem.NomVar);
l = l->Suivant;
}
}