From 8febf1d70d18bd641f7cd8cfd9014d038467c377 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Wed, 25 May 2022 18:06:29 -0400 Subject: [PATCH] 2022-05-25 Fred Gleason * 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 --- ChangeLog | 3 +++ lib/rdreport.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e35c2e92..a9662f7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + * Fixed a bug in rdlogmanager(1) that could cause report generation + to fail on systems that generate process IDs higher than 999999. diff --git a/lib/rdreport.cpp b/lib/rdreport.cpp index e66fa0ff..40632f5e 100644 --- a/lib/rdreport.cpp +++ b/lib/rdreport.cpp @@ -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