From a5acb2e1a880114a63ebcf38233d996e5b9abfc5 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Sat, 31 Jan 2009 11:08:30 +0100 Subject: Fix format string compiler warning --- tests/icles/v4l2src-test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/icles/v4l2src-test.c b/tests/icles/v4l2src-test.c index 431f00c2..c3d07719 100644 --- a/tests/icles/v4l2src-test.c +++ b/tests/icles/v4l2src-test.c @@ -57,8 +57,7 @@ run_options (char opt) freq = gst_tuner_get_frequency (tuner, channel); - printf ("\ntype the new frequency (current = %lu) (-1 to cancel): ", - freq); + printf ("\ntype the new frequency (current = %u) (-1 to cancel): ", freq); scanf ("%u", &freq); if (freq != -1) gst_tuner_set_frequency (tuner, channel, freq); -- cgit