diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-17 18:23:00 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-17 18:23:28 +0100 |
commit | 3342b1679e3f08976a76726ef05ac1dee08cbe3a (patch) | |
tree | b645889694e6bec580ec15a872180b285f92e804 /tests/check/pipelines | |
parent | 7e363149f323f745b4147aa469208bdbb8465db6 (diff) | |
download | gstreamer-plugins-good-3342b1679e3f08976a76726ef05ac1dee08cbe3a.tar.gz |
Add -Wmissing-declarations -Wmissing-prototypes warning flags
And fix all the warnings.
Diffstat (limited to 'tests/check/pipelines')
-rw-r--r-- | tests/check/pipelines/simple-launch-lines.c | 3 | ||||
-rw-r--r-- | tests/check/pipelines/wavpack.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/check/pipelines/simple-launch-lines.c b/tests/check/pipelines/simple-launch-lines.c index 5b27aefb0..d4eaee9d7 100644 --- a/tests/check/pipelines/simple-launch-lines.c +++ b/tests/check/pipelines/simple-launch-lines.c @@ -249,7 +249,8 @@ GST_START_TEST (test_video_encoders_decoders) GST_END_TEST #endif /* #ifndef GST_DISABLE_PARSE */ - Suite * simple_launch_lines_suite (void) +static Suite * +simple_launch_lines_suite (void) { Suite *s = suite_create ("Pipelines"); TCase *tc_chain = tcase_create ("linear"); diff --git a/tests/check/pipelines/wavpack.c b/tests/check/pipelines/wavpack.c index f9599fe1b..452945b39 100644 --- a/tests/check/pipelines/wavpack.c +++ b/tests/check/pipelines/wavpack.c @@ -188,7 +188,7 @@ GST_START_TEST (test_encode_decode) GST_END_TEST; -Suite * +static Suite * wavpack_suite (void) { Suite *s = suite_create ("Wavpack"); |