From b02ea818de7fd6f9f93fbab15ab261140862a871 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 11 Sep 2021 10:44:28 -0500 Subject: [PATCH] Add const declaration to amplifier.c --- src/amplifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amplifier.c b/src/amplifier.c index c56364e0c..c6e05694e 100644 --- a/src/amplifier.c +++ b/src/amplifier.c @@ -103,7 +103,7 @@ static int add_opened_amp(AMP *amp) } -static int remove_opened_amp(AMP *amp) +static int remove_opened_amp(const AMP *amp) { struct opened_amp_l *p, *q; q = NULL;