summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index 5a93dece02..5fe386c565 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -87,8 +87,8 @@ namespace msg
std::ostream& streams(msg_channel_type chan)
{
- ASSERT(chan >= 0 &&
- static_cast<unsigned int>(chan) < stream_ptrs.size());
+ ASSERT(chan >= 0
+ && static_cast<unsigned int>(chan) < stream_ptrs.size());
return *stream_ptrs[chan];
}