mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix build break
This commit is contained in:
parent
b816a90256
commit
0f03b41995
|
@ -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__))
|
||||
|
|
Loading…
Reference in a new issue