ref: 51431bdefa5aaf9c99dd5524df93dd81c8a18368
parent: 7b70a3e6d9caf58d84792c9c2ddd6547a13b7843
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Thu Dec 28 12:51:45 EST 2023
PF_ftos: %5.1f -> %f
--- a/pr_cmds.c
+++ b/pr_cmds.c
@@ -902,7 +902,7 @@
if (v == (int)v)
sprint (s, "%d",(int)v);
else
- sprint (s, "%5.1f",v);
+ sprint (s, "%f",v);
G_INT(pr, OFS_RETURN) = PR_SetStr(pr, s);
}