diff options
Diffstat (limited to 'missing')
-rw-r--r-- | missing/langinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/missing/langinfo.c b/missing/langinfo.c index 594fe1fcf1..143ee0e820 100644 --- a/missing/langinfo.c +++ b/missing/langinfo.c @@ -56,7 +56,7 @@ #endif #define digit(x) ((x) >= '0' && (x) <= '9') -#define strstart(s, n) (strncasecmp(s, n, strlen(n)) == 0) +#define strstart(s, n) (strncasecmp((s), (n), strlen(n)) == 0) static char buf[16]; |