mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-24 16:38:13 +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:
parent
c7e8a92bac
commit
8febf1d70d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user