summaryrefslogtreecommitdiff
path: root/src/components/include/utils/macro.h
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2014-10-27 16:59:35 -0400
committerJustin Dickow <jjdickow@gmail.com>2014-10-27 16:59:35 -0400
commit1ad35342dfe2f92bc1deb734de504177596fc8d6 (patch)
treeb655799ef580fae979e1e66bf3b82dfdd3d42f45 /src/components/include/utils/macro.h
parent9da0cfe821c3c9252a543e1e4a344867de9dceee (diff)
downloadsdl_core-1ad35342dfe2f92bc1deb734de504177596fc8d6.tar.gz
3.10.1
Signed-off-by: Justin Dickow <jjdickow@gmail.com>
Diffstat (limited to 'src/components/include/utils/macro.h')
-rw-r--r--src/components/include/utils/macro.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/include/utils/macro.h b/src/components/include/utils/macro.h
index bc3b3e71c9..bf34b199b5 100644
--- a/src/components/include/utils/macro.h
+++ b/src/components/include/utils/macro.h
@@ -57,8 +57,7 @@
#define DCHECK(condition) \
if (!(condition)) { \
printf("\nDCHECK [%s:%d][%s]", __FILE__, __LINE__, __FUNCTION__); \
- printf("[Check failed: " #condition); \
- printf("]\n\n"); \
+ printf("[Check failed: " #condition "]\n\n"); \
assert(false); \
}