From 143f60fb480fa50535d74edb4f7a6ef44143c88a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 16 Nov 2017 12:43:29 +0100 Subject: [PATCH] Adapted field size of small pacifier numbers to size of large numbers --- xorriso/text_io.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorriso/text_io.c b/xorriso/text_io.c index 414d2871..e68a4793 100644 --- a/xorriso/text_io.c +++ b/xorriso/text_io.c @@ -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", diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 5797b53c..72797285 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2017.11.15.101228" +#define Xorriso_timestamP "2017.11.16.114215"