Adapted field size of small pacifier numbers to size of large numbers

This commit is contained in:
Thomas Schmitt 2017-11-16 12:43:29 +01:00
parent d574a69834
commit 143f60fb48
2 changed files with 2 additions and 2 deletions

View File

@ -3934,7 +3934,7 @@ int Xorriso_pacifier_callback(struct XorrisO *xorriso, char *what_done,
"Thank you for being patient for");
} else if(todo<=0.0) {
if(count<10000000)
sprintf(count_text, "%.f", (double) count);
sprintf(count_text, "%7.f", (double) count);
else
Sfile_scale((double) count, count_text, 7, 1e5, 1);
sprintf(xorriso->info_text, "%s %s%s in",

View File

@ -1 +1 @@
#define Xorriso_timestamP "2017.11.15.101228"
#define Xorriso_timestamP "2017.11.16.114215"