aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Commandline.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2016-08-16 10:35:17 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2016-08-16 10:35:17 +0200
commit5309f16159e4decd81330622dcdd6eb4b25819a1 (patch)
treeb40df6edcd7826e7d83885253508ccf49377479d /driver/Commandline.ml
parenteb2844b87fa0e176bd65466d7ab7d16666344406 (diff)
downloadcompcert-5309f16159e4decd81330622dcdd6eb4b25819a1.tar.gz
compcert-5309f16159e4decd81330622dcdd6eb4b25819a1.zip
Moved quoting functions in Responsefile
Also corrected some typos and corrected exception handling for expandargv. Bug 18308
Diffstat (limited to 'driver/Commandline.ml')
-rw-r--r--driver/Commandline.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Commandline.ml b/driver/Commandline.ml
index 7e683680..d125736a 100644
--- a/driver/Commandline.ml
+++ b/driver/Commandline.ml
@@ -103,6 +103,6 @@ let parse_cmdline spec =
try
let argv = expandargv Sys.argv in
parse_array spec argv 1 (Array.length argv - 1)
- with Arg.Bad s ->
+ with Responsefile.Error s ->
eprintf "%s" s;
exit 2