diff options
author | biouman <biouman> | 2001-04-29 01:55:56 +0000 |
---|---|---|
committer | biouman <biouman> | 2001-04-29 01:55:56 +0000 |
commit | 8b5f900d21708e9a101e8d31840337286674d25c (patch) | |
tree | da550275df5977daf465b5208dadce4cd320dc82 /lib | |
parent | 8c583648ba74299a081afe87129d521d1cb5ac3d (diff) |
*** empty log message ***
Diffstat (limited to 'lib')
-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); } |