summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLauri Leukkunen <lle@rahina.org>2007-12-12 01:12:20 +0200
committerLauri Leukkunen <lle@rahina.org>2007-12-12 01:12:20 +0200
commiteccd41bf4f27cd35f90df6eb2aca4eceb948dd73 (patch)
treebd48e4f7331a90503201c565552ad69eecc93bca /include
parentc828cfd67a476766d7853e3236f74240a43fd208 (diff)
Add backtrace() using debug output, not compiled in by default
Very handy for totally understanding wtf is going on. Signed-off-by: Lauri Leukkunen <lle@rahina.org>
Diffstat (limited to 'include')
-rw-r--r--include/sb2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sb2.h b/include/sb2.h
index 7d75ff8..b743987 100644
--- a/include/sb2.h
+++ b/include/sb2.h
@@ -64,7 +64,7 @@ extern int sb_loglevel__; /* do not access directly */
#define SB_LOG(level, ...) \
do { \
- if((level) <= sb_loglevel__) { \
+ if ((level) <= sb_loglevel__) { \
sblog_printf_line_to_logfile( \
__FILE__, __LINE__, __VA_ARGS__); \
} \