diff options
-rw-r--r-- | lib/polynom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/polynom.c b/lib/polynom.c index 84eea37..8dcc567 100644 --- a/lib/polynom.c +++ b/lib/polynom.c @@ -269,7 +269,8 @@ double ply_valuation(polynome poly, double point) char *ply_affichage(polynome poly) { /* routine d'affichage d'un polynome */ - static char buf[BUFSIZ], temp[BUFSIZ]; + static char buf[BUFSIZ]; + char temp[BUFSIZ]; int count = 0; buf[0] = '0'; |