summaryrefslogtreecommitdiff
path: root/source/fitz/memento.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-01-09 16:11:04 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-01-09 17:46:26 +0100
commit50b39c939345c36eb5e95c8a71ccdb8cd24c9aad (patch)
treecc5db7cd564628a7217ffa16967230c1353296aa /source/fitz/memento.c
parent18d95a4ee602435899eae941ed0215fa1f71a01b (diff)
downloadmupdf-50b39c939345c36eb5e95c8a71ccdb8cd24c9aad.tar.xz
Be consistent in use of DEBUG/NDEBUG macros.
Only use NDEBUG as it's the one that most environments already set, so is likely to lead to the least amount of confusion if compiling with a custom build system.
Diffstat (limited to 'source/fitz/memento.c')
-rw-r--r--source/fitz/memento.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/memento.c b/source/fitz/memento.c
index 68698f0d..db83c9e6 100644
--- a/source/fitz/memento.c
+++ b/source/fitz/memento.c
@@ -831,7 +831,7 @@ void Memento_breakpoint(void)
{
/* A handy externally visible function for breakpointing */
#if 0 /* Enable this to force automatic breakpointing */
-#ifdef DEBUG
+#ifndef NDEBUG
#ifdef _MSC_VER
__asm int 3;
#endif