diff options
author | Tee KOBAYASHI <[email protected]> | 2021-01-09 13:23:40 +0900 |
---|---|---|
committer | NARUSE, Yui <[email protected]> | 2021-01-13 17:07:38 +0900 |
commit | 98ca667b9835fed7709ef192eac966aca98bf50d (patch) | |
tree | 2749440a17d8bc46ba2e64b22da02136f7865f06 | |
parent | 5b2a0fc682ce69e2b95532ce1116dcb32e6aa011 (diff) |
Fixed a typo [Bug #17522]
-rw-r--r-- | include/ruby/internal/stdalign.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/internal/stdalign.h b/include/ruby/internal/stdalign.h index b9a24d31a3..02eb7ab959 100644 --- a/include/ruby/internal/stdalign.h +++ b/include/ruby/internal/stdalign.h @@ -65,7 +65,7 @@ #elif RBIMPL_HAS_DECLSPEC_ATTRIBUTE(align) # define RBIMPL_ALIGNAS(_) __declspec(align(_)) -#elif RBIMPL_HAS_ATTRIBUTE(aliged) +#elif RBIMPL_HAS_ATTRIBUTE(aligned) # define RBIMPL_ALIGNAS(_) __attribute__((__aligned__(_))) #else |