Small corrections with version number and write counter report

This commit is contained in:
Thomas Schmitt 2008-01-19 16:23:36 +00:00
parent 9a85568c29
commit 82792d0971
3 changed files with 4 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.01.19.090546"
#define Xorriso_timestamP "2008.01.19.162244"