summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-01-31 11:08:30 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-01-31 11:09:00 +0100
commita5acb2e1a880114a63ebcf38233d996e5b9abfc5 (patch)
treef67380ef706e134b5f4e0846a71b7a80220c0347 /tests
parent83d59237bcce8c0b827433bb05cbb8aaaec2be2f (diff)
Fix format string compiler warning
Diffstat (limited to 'tests')
-rw-r--r--tests/icles/v4l2src-test.c3
1 files changed, 1 insertions, 2 deletions
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);