From c89b4bdc6e30789eb53fbefc39e52fc3e2f1edf4 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Mon, 22 May 2023 17:03:36 -0400 Subject: [PATCH] 2023-05-22 Fred Gleason * Fixed a regression in the BroadcastTools ACS8.2 driver in ripcd(8). Signed-off-by: Fred Gleason --- ChangeLog | 2 ++ ripcd/btacs82.cpp | 8 +++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index cfe23a19..bbf3782b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24160,3 +24160,5 @@ rdlogmanager(1) to be fully resizeable. 2023-05-22 Fred Gleason * Updated screenshot for rdlogmanager(1) in the Operations Guide. +2023-05-22 Fred Gleason + * Fixed a regression in the BroadcastTools ACS8.2 driver in ripcd(8). diff --git a/ripcd/btacs82.cpp b/ripcd/btacs82.cpp index 29400522..8a79d761 100644 --- a/ripcd/btacs82.cpp +++ b/ripcd/btacs82.cpp @@ -2,7 +2,7 @@ // // A Rivendell switcher driver for the BroadcastTools ACS 8.2 // -// (C) Copyright 2002-2021 Fred Gleason +// (C) Copyright 2002-2023 Fred Gleason // // 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 @@ -65,11 +65,9 @@ BtAcs82::BtAcs82(RDMatrix *matrix,QObject *parent) // Interval OneShots // bt_gpi_oneshot=new RDOneShot(this); - connect(bt_gpi_oneshot,SIGNAL(timeout(void *)), - this,SLOT(gpiOneshotData(int))); + connect(bt_gpi_oneshot,SIGNAL(timeout(int)),this,SLOT(gpiOneshotData(int))); bt_gpo_oneshot=new RDOneShot(this); - connect(bt_gpo_oneshot,SIGNAL(timeout(void *)), - this,SLOT(gpoOneshotData(int))); + connect(bt_gpo_oneshot,SIGNAL(timeout(int)),this,SLOT(gpoOneshotData(int))); }