We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7210495 commit 82e52d9Copy full SHA for 82e52d9
libc/test/src/signal/sigaltstack_test.cpp
@@ -33,7 +33,7 @@ static void handler(int) {
33
// out or mapped to a register.
34
uint8_t var[LOCAL_VAR_SIZE];
35
for (int i = 0; i < LOCAL_VAR_SIZE; ++i)
36
- var[i] = i;
+ var[i] = (uint8_t)i;
37
// Verify that array is completely on the alt_stack.
38
for (int i = 0; i < LOCAL_VAR_SIZE; ++i) {
39
if (!(uintptr_t(var + i) < uintptr_t(alt_stack + ALT_STACK_SIZE) &&
0 commit comments