Skip to content

Commit

Permalink
[enhance] compilation: add a line feed after compilation error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederic Ye committed Mar 26, 2012
1 parent f0a0404 commit 63dcc99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qml2ocaml/qml2ocaml.ml
@@ -1,5 +1,5 @@
(*
Copyright © 2011 MLstate
Copyright © 2011, 2012 MLstate
This file is part of OPA.
Expand Down Expand Up @@ -908,7 +908,7 @@ prerr_endline \"CHECKUP - LIBS - OK\"
let o = cont () in
if o <> 0
then (
OManager.printf "error during ocaml compilation -- the command was :@\n%s@\nyou can see compilation logs in %s/%s" c build_dir compilation_log_file;
OManager.printf "error during ocaml compilation -- the command was :@\n%s@\nyou can see compilation logs in %s/%s\n" c build_dir compilation_log_file;
o
)
else do_compilation q in
Expand Down

0 comments on commit 63dcc99

Please sign in to comment.