2023-06-05 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdvairplayd(8) that caused the build to
	break on Debian-ish setups.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2023-06-05 12:30:56 -04:00
parent e03e484d43
commit 1cd8f5e253
2 changed files with 5 additions and 2 deletions

View File

@@ -24210,3 +24210,6 @@
1555x870 pixels. 1555x870 pixels.
* Changed the minimum required display resolution in 'INSTALL' to * Changed the minimum required display resolution in 'INSTALL' to
1680x1050 pixels. 1680x1050 pixels.
2023-06-05 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdvairplayd(8) that caused the build to
break on Debian-ish setups.

View File

@@ -2,7 +2,7 @@
// //
// Headless log player // Headless log player
// //
// (C) Copyright 2018-2021 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2018-2023 Fred Gleason <fredg@paravelsystems.com>
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as // it under the terms of the GNU General Public License version 2 as
@@ -67,7 +67,7 @@ MainObject::MainObject(QObject *parent)
// Open the Database // Open the Database
// //
rda=static_cast<RDApplication *>(new RDCoreApplication("rdvairplayd", rda=static_cast<RDApplication *>(new RDCoreApplication("rdvairplayd",
"rdvairplayd",false,RDVAIRPLAYD_USAGE,this)); "rdvairplayd",RDVAIRPLAYD_USAGE,false,this));
if(!rda->open(&err_msg,&err_type,false)) { if(!rda->open(&err_msg,&err_type,false)) {
fprintf(stderr,"rdvairplayd: %s\n",err_msg.toUtf8().constData()); fprintf(stderr,"rdvairplayd: %s\n",err_msg.toUtf8().constData());
exit(1); exit(1);