From 3cf21ccc9d83afdb0497ea4e2ffc9b16d9a45b9c Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Tue, 11 Apr 2017 01:27:31 +1000 Subject: [PATCH] Simplify a conditional expression --- source/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/misc.c b/source/misc.c index ebe318c..7407856 100644 --- a/source/misc.c +++ b/source/misc.c @@ -1556,7 +1556,7 @@ BUILT_IN_COMMAND(ChanWallOp) char buffer[BIG_BUFFER_SIZE + 1]; - if (!args || (args && !*args)) + if (!args || !*args) return; if (get_current_channel_by_refnum(0))