diff options
author | jstebbins <[email protected]> | 2015-03-30 21:14:03 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-03-30 21:14:03 +0000 |
commit | 67f6b82d9c52e005e5df02c31807a4899b3e2629 (patch) | |
tree | dcf5f3ba1436e22c80f63ec03786b53a05493398 /gtk | |
parent | 1cc6c997f87cecd6de734f0a91bf34e5343bf82c (diff) |
LinGui: fix unused variable warning.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7031 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 6895122df..d05b66f84 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -662,7 +662,9 @@ typedef struct static gchar *dvd_device = NULL; static gchar *arg_preset = NULL; static gboolean ghb_debug = FALSE; +#if defined(_WIN32) static gboolean win32_console = FALSE; +#endif static GOptionEntry entries[] = { |