Skip to content

Commit

Permalink
test/explicit-bzero.c: Fix Werror=sign-conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
besser82 committed Mar 31, 2021
1 parent 98122ab commit 6cb303a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/explicit-bzero.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ main (void)
if (page_alignment < sizeof (void *))
page_alignment = sizeof (void *);

co_stack_size = SIGSTKSZ + TEST_BUFFER_SIZE;
co_stack_size = SIGSTKSZ + (size_t) TEST_BUFFER_SIZE;
if (co_stack_size < page_alignment * 4)
co_stack_size = page_alignment * 4;

Expand Down

0 comments on commit 6cb303a

Please sign in to comment.