mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-17 16:11:12 +02:00
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:
@@ -23179,3 +23179,6 @@
|
||||
* Fixed a bug in the Voice Tracker dialog where resizing the window
|
||||
would cause the relative positions of the markers in the waveform
|
||||
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.
|
||||
|
@@ -424,7 +424,7 @@ bool RDReport::generateReport(const QDate &startdate,const QDate &enddate,
|
||||
//
|
||||
// Generate Mixdown ID
|
||||
//
|
||||
QString mixname=QString::asprintf("MIX-%d",getpid());
|
||||
QString mixname=QString::asprintf("MX%d",getpid());
|
||||
|
||||
//
|
||||
// Iterate Selected Services
|
||||
|
Reference in New Issue
Block a user