summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorUrabe, Shyouhei <shyouhei@ruby-lang.org>2019-04-26 17:00:58 +0900
committerUrabe, Shyouhei <shyouhei@ruby-lang.org>2019-04-29 21:52:44 +0900
commit7c0f513e97828dd8274695a49bde92c326b208cb (patch)
treeb39544a272197ead9c0906826840e433934dd77f /string.c
parent6a3165e19dfa21babfb2ef1f1c20c9930410b0ec (diff)
fix typo
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
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