mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
Fix format string compiler warning
This commit is contained in:
parent
83d59237bc
commit
a5acb2e1a8
1 changed files with 1 additions and 2 deletions
|
@ -57,8 +57,7 @@ run_options (char opt)
|
||||||
|
|
||||||
freq = gst_tuner_get_frequency (tuner, channel);
|
freq = gst_tuner_get_frequency (tuner, channel);
|
||||||
|
|
||||||
printf ("\ntype the new frequency (current = %lu) (-1 to cancel): ",
|
printf ("\ntype the new frequency (current = %u) (-1 to cancel): ", freq);
|
||||||
freq);
|
|
||||||
scanf ("%u", &freq);
|
scanf ("%u", &freq);
|
||||||
if (freq != -1)
|
if (freq != -1)
|
||||||
gst_tuner_set_frequency (tuner, channel, freq);
|
gst_tuner_set_frequency (tuner, channel, freq);
|
||||||
|
|
Loading…
Reference in a new issue