Put brackets around mblen() compat constant.

This might help with the reported problem cross compiling for Android
("error: expected identifier or '(' before numeric constant") but
shouldn't hurt in any case.
This commit is contained in:
Darren Tucker 2015-05-08 11:07:27 +10:00
parent d1680d36e1
commit a647b9b8e6
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ long long strtonum(const char *, long long, long long, const char **);
/* multibyte character support */
#ifndef HAVE_MBLEN
# define mblen(x, y) 1
# define mblen(x, y) (1)
#endif
#if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF)