From 8686083e8532dd508d9ae5b90839855f83349ca5 Mon Sep 17 00:00:00 2001 From: Dig Ge Date: Sun, 19 Oct 2008 10:13:39 +0000 Subject: [PATCH] tests/examples/helloworld/helloworld.c: Fix copy'n'paste bug in hello world example (#556900). Original commit message from CVS: Patch by: Dig Ge * tests/examples/helloworld/helloworld.c: (main): Fix copy'n'paste bug in hello world example (#556900). --- ChangeLog | 7 +++++++ common | 2 +- tests/examples/helloworld/helloworld.c | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee531f52cd..57ac651a7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-10-19 Tim-Philipp Müller + + Patch by: Dig Ge + + * tests/examples/helloworld/helloworld.c: (main): + Fix copy'n'paste bug in hello world example (#556900). + 2008-10-17 Wim Taymans * libs/gst/base/gstbasesink.c: (gst_base_sink_pad_activate_pull), diff --git a/common b/common index 46eefd2f84..2802bb1751 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 46eefd2f8474ee748864c59635be87b5a29317d1 +Subproject commit 2802bb17517a6cfbbb1be6da61ec19151be0750b diff --git a/tests/examples/helloworld/helloworld.c b/tests/examples/helloworld/helloworld.c index bd6016ac59..9749651cc7 100644 --- a/tests/examples/helloworld/helloworld.c +++ b/tests/examples/helloworld/helloworld.c @@ -75,7 +75,7 @@ main (int argc, char *argv[]) return -1; } resample = gst_element_factory_make ("audioresample", "audioresample"); - if (!conv) { + if (!resample) { g_print ("could not create \"audioresample\" element!"); return -1; }