aboutsummaryrefslogtreecommitdiff
path: root/src/helper/jim-nvp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/jim-nvp.c')
-rw-r--r--src/helper/jim-nvp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/jim-nvp.c b/src/helper/jim-nvp.c
index 580b079..e21bc68 100644
--- a/src/helper/jim-nvp.c
+++ b/src/helper/jim-nvp.c
@@ -66,7 +66,7 @@ int jim_get_nvp(Jim_Interp *interp,
struct jim_nvp *jim_nvp_name2value_simple(const struct jim_nvp *p, const char *name)
{
while (p->name) {
- if (0 == strcmp(name, p->name))
+ if (strcmp(name, p->name) == 0)
break;
p++;
}
@@ -76,7 +76,7 @@ struct jim_nvp *jim_nvp_name2value_simple(const struct jim_nvp *p, const char *n
struct jim_nvp *jim_nvp_name2value_nocase_simple(const struct jim_nvp *p, const char *name)
{
while (p->name) {
- if (0 == strcasecmp(name, p->name))
+ if (strcasecmp(name, p->name) == 0)
break;
p++;
}