diff options
Diffstat (limited to 'src/thread.c')
| -rw-r--r-- | src/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.c b/src/thread.c index dd4ef870026..b7635e229e1 100644 --- a/src/thread.c +++ b/src/thread.c | |||
| @@ -43,7 +43,7 @@ union aligned_thread_state | |||
| 43 | struct thread_state s; | 43 | struct thread_state s; |
| 44 | GCALIGNED_UNION_MEMBER | 44 | GCALIGNED_UNION_MEMBER |
| 45 | }; | 45 | }; |
| 46 | verify (GCALIGNED (union aligned_thread_state)); | 46 | static_assert (GCALIGNED (union aligned_thread_state)); |
| 47 | 47 | ||
| 48 | static union aligned_thread_state main_thread | 48 | static union aligned_thread_state main_thread |
| 49 | = {{ | 49 | = {{ |