diff options
-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 ;; |