From c1f324d0d6e5c2d73adb541405beba6358842ec4 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Fri, 21 Nov 2014 16:57:22 +0100 Subject: [PATCH] Rename Playing test and fix compilation --- tester/player_tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/player_tester.c b/tester/player_tester.c index 457bd899c..f60e29a68 100644 --- a/tester/player_tester.c +++ b/tester/player_tester.c @@ -84,13 +84,13 @@ static void play_file(const char *filename, bool_t unsupported_format) { } static void playing_test(void) { - const char *filename = ms_strdup_printf("%s/sounds/hello_opus_h264.mkv", liblinphone_tester_file_prefix); + char *filename = ms_strdup_printf("%s/sounds/hello_opus_h264.mkv", liblinphone_tester_file_prefix); play_file(filename, !linphone_local_player_matroska_supported()); ms_free(filename); } test_t player_tests[] = { - { "Playing" , playing_test } + { "Local MKV file" , playing_test } }; test_suite_t player_test_suite = {