summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2013-08-19 18:48:32 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2013-08-19 18:48:32 +0100
commit33d7248feb0be93fea931958d3a9edd65d0f6077 (patch)
tree6803096cef2fb3663a9f3c160568e28b3b1ce321 /src
parent93ea1fd923f3312ee6c54c0c7bea634d3ed48a76 (diff)
parent5cc86a30ac59d52608f06e387ba6f6840b9b703e (diff)
downloadrabbitmq-server-git-33d7248feb0be93fea931958d3a9edd65d0f6077.tar.gz
merge bug25721 into stable
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]),