1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-11-03 04:17:18 -05:00

Fix a type error

This commit is contained in:
Moritz Grimm 2017-10-04 15:22:12 +02:00
parent 0e414f6142
commit c6741ab55f

View File

@ -57,7 +57,7 @@ START_TEST(test_stream)
cfg_set_stream_server_public("test", NULL); cfg_set_stream_server_public("test", NULL);
ck_assert_int_eq(stream_setup(s1), 0); ck_assert_int_eq(stream_setup(s1), 0);
ck_assert_int_eq(stream_get_connected(s1), NULL); ck_assert_int_eq(stream_get_connected(s1), 0);
m = mdata_create(); m = mdata_create();