From 55f028dad55f2a507e5d6de31bce832067404f19 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 14 May 2015 18:33:48 +0800 Subject: [PATCH] src/Application.vala --- src/Application.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index e567c07f8..c17b09289 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -56,14 +56,14 @@ { "target", 0, 0, OptionArg.STRING, ref opt_compile_target, "Target to build", null }, { "skip-file", 0, 0, OptionArg.STRING, ref opt_compile_skip ,"For test compiles do not add this (usually used in conjunction with add-file ", null }, { "add-file", 0, 0, OptionArg.STRING, ref opt_compile_add, "Add this file to compile list", null }, - { "debug", 0, 0, OptionArg.BOOLEAN, ref opt_debug, "Show debug messages", null }, + { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null }, { null } }; public static string opt_compile_project; public static string opt_compile_target; public static string opt_compile_skip; public static string opt_compile_add; - public boolean string opt_debug = false; + public static bool opt_debug = false; enum Target { -- 2.39.2