From 0f03b41995bb614c03539b5a04647742b51c458a Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 22 Feb 2020 04:28:27 +0530 Subject: [PATCH] Fix build break --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 41f1fcf7..e8b52093 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -645,7 +645,7 @@ static haiku_nm_h haiku_hnd; /* A faster version of xisdigit */ #define xisdigit(c) ((unsigned int) (c) - '0' <= 9) #define xerror() perror(xitoa(__LINE__)) -#define xconfirm(c) (c == 'y' || c == 'Y') +#define xconfirm(c) ((c) == 'y' || (c) == 'Y') #ifdef __GNUC__ #define UNUSED(x) UNUSED_##x __attribute__((__unused__))