summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-03 04:38:01 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-03 04:38:01 +0200
commit2a1cde453a5a08542963c7a02443056e94249124 (patch)
treebdb5c798a8dcffbab18e53282555d540a19fa733 /src
parentc29a5c39d5efb63c713902489571b0b0ab84ca91 (diff)
downloadxine-lib-2a1cde453a5a08542963c7a02443056e94249124.tar.gz
xine-lib-2a1cde453a5a08542963c7a02443056e94249124.tar.bz2
Inverse logic, check for NDEBUG not being defined rather than DEBUG being defined (this follows assert() way of working).
Diffstat (limited to 'src')
-rw-r--r--src/xine-utils/monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-utils/monitor.c b/src/xine-utils/monitor.c
index 803d4ecdd..1a348087c 100644
--- a/src/xine-utils/monitor.c
+++ b/src/xine-utils/monitor.c
@@ -33,7 +33,7 @@
#define MAX_ID 10
-#ifdef DEBUG
+#ifndef NDEBUG
static long long int profiler_times[MAX_ID] ;
static long long int profiler_start[MAX_ID] ;