Fix build break

This commit is contained in:
Arun Prakash Jana 2020-02-22 04:28:27 +05:30
parent b816a90256
commit 0f03b41995
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -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__))