From ba225155e4b93b9eb0663ff5a7c260a306627dcb Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Tue, 30 Nov 2021 18:36:57 +0100 Subject: 49612: avoid startup error with clashing non-local module parameter name --- Src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src') diff --git a/Src/module.c b/Src/module.c index f41b82f25..bab4d8d73 100644 --- a/Src/module.c +++ b/Src/module.c @@ -1039,7 +1039,7 @@ checkaddparam(const char *nam, int opt_i) * non-autoloadable parameter already there. This * is consistent with the way add_auto* functions work. */ - if (!opt_i || !pm->level) { + if (!opt_i || pm->level) { zwarn("Can't add module parameter `%s': %s", nam, pm->level ? "local parameter exists" : -- cgit 1.4.1