summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--charf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/charf.c b/charf.c
index c849c55..537f28a 100644
--- a/charf.c
+++ b/charf.c
@@ -177,7 +177,7 @@ void compute(EXPTYPE p, int D, VALUETYPE* f, VALUETYPE* records){
sprintf(s,"f: ");
int l = 3;
for(int i=0; i<D; i++) l += sprintf(s+l,"%2.0f ",to_double(f[i]));
- for(int i=D; i<N; i++) l += sprintf(s+l," ");
+ for(int i=D; i<N; i++) l += sprintf(s+l," ");
char rts[128];
root_to_string(rts,r,p);
l += sprintf(s+l,"%dth der.: %s\n",k,rts);