aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool/src/reltool.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2013-02-07 14:30:46 +0100
committerSiri Hansen <[email protected]>2013-02-21 11:03:35 +0100
commitaf5215e4740fa56dc51895b7117952fb020d8887 (patch)
tree0e3ad8802c321014804289f885120fadf55a277d /lib/reltool/src/reltool.erl
parent0cdef40e8e3d41234802a350329a215b25ca220c (diff)
downloadotp-af5215e4740fa56dc51895b7117952fb020d8887.tar.gz
otp-af5215e4740fa56dc51895b7117952fb020d8887.tar.bz2
otp-af5215e4740fa56dc51895b7117952fb020d8887.zip
[reltool] Change ~s to ~ts and ~p to ~tp when appropriate
Diffstat (limited to 'lib/reltool/src/reltool.erl')
-rw-r--r--lib/reltool/src/reltool.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool.erl b/lib/reltool/src/reltool.erl
index 2bdf222aa0..8ab2c2399e 100644
--- a/lib/reltool/src/reltool.erl
+++ b/lib/reltool/src/reltool.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2009-2012. All Rights Reserved.
+%% Copyright Ericsson AB 2009-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -120,7 +120,7 @@ apply_fun(Pid, false, Fun) ->
apply_fun(Pid, true, Fun) ->
case get_status(Pid) of
{ok, Warnings} ->
- [io:format("~p: ~s\n", [?APPLICATION, W]) || W <- Warnings],
+ [io:format("~w: ~ts\n", [?APPLICATION, W]) || W <- Warnings],
apply_fun(Pid, false, Fun);
{error, _Reason} = Error ->
stop(Pid),