From 7c0f513e97828dd8274695a49bde92c326b208cb Mon Sep 17 00:00:00 2001 From: "Urabe, Shyouhei" Date: Fri, 26 Apr 2019 17:00:58 +0900 Subject: [PATCH] fix typo --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.c b/string.c index 895fe62952..bee9cd4774 100644 --- a/string.c +++ b/string.c @@ -450,7 +450,7 @@ search_nonascii(const char *p, const char *e) { const uintptr_t *s, *t; -#if defined(__STDC_VERSION) && (__STDC_VERSION__ >= 199901L) +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) # if SIZEOF_UINTPTR_T == 8 # define NONASCII_MASK UINT64_C(0x8080808080808080) # elif SIZEOF_UINTPTR_T == 4