summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2017-12-13 12:40:50 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2017-12-13 12:43:54 +0100
commit164abf4719b6d17a4e7287d4c0cfd5c5ba8611e8 (patch)
treed1f3c6e0493540e383c5bf4e174066670b22e5f3 /compiler
parentc03783a4f801f72073b13bfad0aaaacfdaab472b (diff)
downloadvala-164abf4719b6d17a4e7287d4c0cfd5c5ba8611e8.tar.gz
Make use of GLib.OPTION_REMAINING instead of ""
Diffstat (limited to 'compiler')
-rw-r--r--compiler/valacompiler.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/valacompiler.vala b/compiler/valacompiler.vala
index 1c2b084f0..ed97374dd 100644
--- a/compiler/valacompiler.vala
+++ b/compiler/valacompiler.vala
@@ -159,7 +159,7 @@ class Vala.Compiler {
{ "enable-version-header", 0, 0, OptionArg.NONE, ref enable_version_header, "Write vala build version in generated files", null },
{ "disable-version-header", 0, 0, OptionArg.NONE, ref disable_version_header, "Do not write vala build version in generated files", null },
{ "run-args", 0, 0, OptionArg.STRING, ref run_args, "Arguments passed to directly compiled executeable", null },
- { "", 0, 0, OptionArg.FILENAME_ARRAY, ref sources, null, "FILE..." },
+ { OPTION_REMAINING, 0, 0, OptionArg.FILENAME_ARRAY, ref sources, null, "FILE..." },
{ null }
};