Corrected the pacifier message when scanning for volid or timestamp

This commit is contained in:
Thomas Schmitt 2024-08-06 21:33:58 +02:00
parent c0ec40c5d2
commit a8eabad3da
2 changed files with 3 additions and 3 deletions

View File

@ -2310,7 +2310,7 @@ not_found:;
if(now - last_pacifier >= 5 && track_count > 0) {
last_pacifier= now;
sprintf(msg,
"Scanned %d tracks for matching volid in %.f seconds",
"Scanned %d tracks for matching volid or timestamp in %.f seconds",
track_count, (double) (now - start_time));
isoburn_msgs_submit(o, 0x00060000, msg, 0, "UPDATE", 0);
}
@ -2379,7 +2379,7 @@ ex:;
if(start_time != last_pacifier && track_count > 0) {
now= time(NULL);
sprintf(msg,
"Scanned %d tracks for matching volid in %.f seconds",
"Scanned %d tracks for matching volid or timestamp in %.f seconds",
track_count, (double) (now - start_time));
isoburn_msgs_submit(o, 0x00060000, msg, 0, "UPDATE", 0);
}

View File

@ -1 +1 @@
#define Xorriso_timestamP "2024.08.06.193209"
#define Xorriso_timestamP "2024.08.06.193329"