diff --git a/test/ng_xorrisoburn.c b/test/ng_xorrisoburn.c index 0c6b2250..81870c81 100644 --- a/test/ng_xorrisoburn.c +++ b/test/ng_xorrisoburn.c @@ -600,7 +600,8 @@ int Xorriso_write_session(struct XorrisO *xorriso, int flag) burn_track_get_counters(tracks[0],&readcounter,&writecounter); sprintf(xorriso->info_text, "ISO image produced: %d sectors. Written to media: %d sectors\n", - (int) readcounter/2048, (int) writecounter/2048); + (int) (readcounter/ (off_t) 2048), + (int) (writecounter/ (off_t) 2048)); Xorriso_info(xorriso, 0); } } diff --git a/test/xorriso.c b/test/xorriso.c index 65a73372..7118ea1a 100644 --- a/test/xorriso.c +++ b/test/xorriso.c @@ -71,7 +71,7 @@ or */ -#define PROG_VERSION "0.0.0" +#define PROG_VERSION "0.1.0" /** The source code release timestamp */ #include "xorriso_timestamp.h" diff --git a/test/xorriso_timestamp.h b/test/xorriso_timestamp.h index e8a7ea81..f58074b2 100644 --- a/test/xorriso_timestamp.h +++ b/test/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2008.01.19.090546" +#define Xorriso_timestamP "2008.01.19.162244"