diff options
-rw-r--r-- | lib/polynom.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/polynom.c b/lib/polynom.c index 915f0d1..dcd3b4f 100644 --- a/lib/polynom.c +++ b/lib/polynom.c @@ -273,7 +273,10 @@ char *ply_affichage(polynome poly) sprintf(temp, "%+f", rat_to_double(poly->coef)); } strcat(buf, temp); /* FIXME: gerer le depassement de buf si po malloc */ - poly = poly->suiv; + poly=poly->suiv; + + + } return Estrdup(buf); } |