summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mpr.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/mpr.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/mpr.h')
-rw-r--r--crawl-ref/source/mpr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/mpr.h b/crawl-ref/source/mpr.h
index 2b9231b29c..5efdf05b2f 100644
--- a/crawl-ref/source/mpr.h
+++ b/crawl-ref/source/mpr.h
@@ -84,15 +84,15 @@ inline void mprnojoin(std::string text, msg_channel_type channel=MSGCH_PLAIN,
}
// 4.1-style mpr, currently named mprf for minimal disruption.
-void mprf( msg_channel_type channel, int param, const char *format, ... );
-void mprf( msg_channel_type channel, const char *format, ... );
-void mprf( const char *format, ... );
+void mprf(msg_channel_type channel, int param, const char *format, ...);
+void mprf(msg_channel_type channel, const char *format, ...);
+void mprf(const char *format, ...);
// Yay for C89 and lack of variadic #defines...
#ifdef DEBUG_DIAGNOSTICS
-void dprf( const char *format, ... );
+void dprf(const char *format, ...);
#else
-static inline void dprf( const char *format, ... ) {}
+static inline void dprf(const char *format, ...) {}
#endif
#endif