1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-10-13 04:53:36 -04:00

Safely squelch a bunch of warnings

This commit is contained in:
Moritz Grimm 2017-10-04 15:23:21 +02:00
parent c6741ab55f
commit cc5a3ab5d3
9 changed files with 28 additions and 28 deletions

View File

@ -930,7 +930,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -78,7 +78,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -177,7 +177,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -78,7 +78,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -150,7 +150,7 @@ START_TEST(test_mdata_strformat)
ck_assert_int_lt(mdata_strformat(md, buf, sizeof(buf), NULL), 0);
ret = mdata_strformat(md, buf, sizeof(buf), "@a@/@b@/@t@/@T@/@s@");
ck_assert_int_eq(ret, strlen(buf));
ck_assert_int_eq(ret, (int)strlen(buf));
ck_assert_str_eq(buf,
"test artist/test album/test title"
"/" SRCDIR "/test01-artist+album+title.ogg"
@ -199,7 +199,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -137,7 +137,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -128,7 +128,7 @@ teardown_checked(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -129,7 +129,7 @@ util_suite(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;

View File

@ -90,7 +90,7 @@ xalloc_suite(void)
int
main(void)
{
unsigned int num_failed;
int num_failed;
Suite *s;
SRunner *sr;