summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2013-08-19 18:47:30 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2013-08-19 18:47:30 +0100
commit5cc86a30ac59d52608f06e387ba6f6840b9b703e (patch)
tree6803096cef2fb3663a9f3c160568e28b3b1ce321 /src
parent93ea1fd923f3312ee6c54c0c7bea634d3ed48a76 (diff)
downloadrabbitmq-server-git-5cc86a30ac59d52608f06e387ba6f6840b9b703e.tar.gz
banish side effect dependent code
Diffstat (limited to 'src')
-rw-r--r--src/rabbit.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 2baec885c3..cb9e6376bf 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -748,7 +748,7 @@ log_banner() ->
{"config file(s)" = K, []} ->
Format(K, "(none)");
{"config file(s)" = K, [V0 | Vs]} ->
- Format(K, V0), [Format("", V) || V <- Vs];
+ [Format(K, V0) | [Format("", V) || V <- Vs]];
{K, V} ->
Format(K, V)
end || S <- Settings]),