1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00

Fix signedness in comparison

This commit is contained in:
Moritz Grimm 2015-05-21 01:25:07 +02:00
parent dcb5303b4b
commit 5350b3be79

View File

@ -93,7 +93,7 @@
ck_assert_ptr_ne(errstr2, NULL); \
\
ck_assert_int_eq(s("20", NULL), 0); \
ck_assert_uint_eq(g(), 20); \
ck_assert_int_eq(g(), 20); \
} while (0)
Suite * cfg_suite(void);