mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 15:47:37 +01:00
Avoid -Wunused-value warning in tests/Gtest-exc.c
Gtest-exc.c: In function 'a':
Gtest-exc.c💯15: warning: value computed is not used [-Wunused-value]
This commit is contained in:
parent
5b55e556ca
commit
5fedf3407c
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ a (int n)
|
||||||
n, &stack, (unsigned long) get_bsp ());
|
n, &stack, (unsigned long) get_bsp ());
|
||||||
|
|
||||||
if (n > 0)
|
if (n > 0)
|
||||||
a (n - 1) + 1;
|
a (n - 1);
|
||||||
else
|
else
|
||||||
b (16);
|
b (16);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue