summaryrefslogtreecommitdiffstats
path: root/nrconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'nrconfig.c')
-rw-r--r--nrconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nrconfig.c b/nrconfig.c
index 133e1da..1b893cc 100644
--- a/nrconfig.c
+++ b/nrconfig.c
@@ -48,7 +48,7 @@ static int is_same_call(char *call1, char *call2)
return 1;
if (!*call2 && !strcmp(call1, "-0"))
return 1;
- return (!strcmp(call1, call2) ? 1 : 0);
+ return !strcmp(call1, call2) ? 1 : 0;
}
static NR_Port *nr_port_ptr(char *name)