2022-05-25 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdlogmanager(1) that could cause report generation
	to fail on systems that generate process IDs higher than 999999.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-05-25 18:06:29 -04:00
parent c7e8a92bac
commit 8febf1d70d
2 changed files with 4 additions and 1 deletions

View File

@ -23179,3 +23179,6 @@
* Fixed a bug in the Voice Tracker dialog where resizing the window * Fixed a bug in the Voice Tracker dialog where resizing the window
would cause the relative positions of the markers in the waveform would cause the relative positions of the markers in the waveform
displays to shift. displays to shift.
2022-05-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that could cause report generation
to fail on systems that generate process IDs higher than 999999.

View File

@ -424,7 +424,7 @@ bool RDReport::generateReport(const QDate &startdate,const QDate &enddate,
// //
// Generate Mixdown ID // Generate Mixdown ID
// //
QString mixname=QString::asprintf("MIX-%d",getpid()); QString mixname=QString::asprintf("MX%d",getpid());
// //
// Iterate Selected Services // Iterate Selected Services