diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2000-02-11 12:45:24 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2000-02-11 12:45:24 +0000 |
commit | 65b246b9d15b739409e027127952f63f14cd0c57 (patch) | |
tree | b0852afa0765aff8440d00d6b7add864c6e03d96 | |
parent | 34a71202962072f30f27882498cb7e745b5dafd7 (diff) |
print_flush -> print_newline dans le format d'affichage des warnings
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2806 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | parsing/location.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/location.ml b/parsing/location.ml index d3ebec68a..d050e3129 100644 --- a/parsing/location.ml +++ b/parsing/location.ml @@ -120,7 +120,7 @@ let print loc = let print_warning loc w = if Warnings.is_active w then begin print loc; - printf "Warning: %s@?" (Warnings.message w); + printf "Warning: %s@." (Warnings.message w); incr num_loc_lines; end ;; |