1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-05 06:15:17 +02: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:
Tommi Rantala 2012-08-11 15:58:44 +03:00
parent 5b55e556ca
commit 5fedf3407c

View file

@ -97,7 +97,7 @@ a (int n)
n, &stack, (unsigned long) get_bsp ());
if (n > 0)
a (n - 1) + 1;
a (n - 1);
else
b (16);