summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Weigt <juw@posteo.de>2026-01-14 08:26:38 +0100
committerJulian Weigt <juw@posteo.de>2026-02-04 15:55:52 +0100
commitdc3963fc6626dda89dcce35e9f3e73151ab7f3e5 (patch)
tree852d71b84c4ae74f03e960aeb41f9021cb72083d
parent6f1ba57b3f0b4121ee4806b6c1a3aa578bfb4d97 (diff)
Fix spacing.
-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);