diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-04-28 18:39:46 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-04-28 18:39:46 +0200 |
commit | f51e3df3b9061a1fa3c984349c8216c50c4f8442 (patch) | |
tree | abe4e942e8817566fb68b53cae59987475b1cc8f | |
parent | 61c564bf72bed92f1d8529c46619464cc2a23beb (diff) |
Add missing newline in port_compiler debug msg
-rw-r--r-- | src/rebar_port_compiler.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_port_compiler.erl b/src/rebar_port_compiler.erl index 57df199..32a9015 100644 --- a/src/rebar_port_compiler.erl +++ b/src/rebar_port_compiler.erl @@ -249,7 +249,7 @@ needs_link(SoName, NewBins) -> ?DEBUG("Last mod is 0 on ~s\n", [SoName]), true; Other -> - ?DEBUG("Checking ~p >= ~p", [MaxLastMod, Other]), + ?DEBUG("Checking ~p >= ~p\n", [MaxLastMod, Other]), MaxLastMod >= Other end. |