diff options
author | jstebbins <[email protected]> | 2011-03-22 02:12:32 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-22 02:12:32 +0000 |
commit | 0d54d468fbfb98ff2394be2274ec499c2cd07fe0 (patch) | |
tree | 261c32b1e08ded2545a187ef640f5808bc1cb8d9 | |
parent | 36a97492d3a09e579077a6ea96c5a4585154590b (diff) |
LinGui: Fix printf with too many parameters
cut/paste error
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3867 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | gtk/src/hb-backend.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index 941d8272c..17f0af853 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -4368,8 +4368,7 @@ ghb_validate_vquality(GValue *settings) "Lossless h.264 is not well supported by\n" "many players and editors.\n\n" "It will produce enormous output files.\n\n" - "Are you sure you wish to use this setting?", - (gint)vquality, min, max); + "Are you sure you wish to use this setting?"); if (!ghb_message_dialog(GTK_MESSAGE_QUESTION, message, "Cancel", "Continue")) { |