summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-06-08 06:09:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-06-08 20:15:23 +0200
commit446efd8c5bc637378a47816bce1b923bf6985edd (patch)
tree3a3720dde6bf1da24edb3d0ba4f2018def9db8f6 /crawl-ref/source/debug.h
parent99810c380d70090e62a37965c3ce616749018f59 (diff)
downloadcrawl-ref-446efd8c5bc637378a47816bce1b923bf6985edd.tar.gz
crawl-ref-446efd8c5bc637378a47816bce1b923bf6985edd.zip
Don't use "" where a null works better.
Diffstat (limited to 'crawl-ref/source/debug.h')
-rw-r--r--crawl-ref/source/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/debug.h b/crawl-ref/source/debug.h
index 7040da6db0..df43f56879 100644
--- a/crawl-ref/source/debug.h
+++ b/crawl-ref/source/debug.h
@@ -53,7 +53,7 @@
#ifdef ASSERTS
NORETURN void AssertFailed(const char *expr, const char *file, int line,
- const char *text = "", ...);
+ const char *text = nullptr, ...);
#ifdef __clang__
# define WARN_PUSH _Pragma("GCC diagnostic push")