mirror of https://github.com/nealey/hdjd.git
Fix logic inversion in dump.h
This commit is contained in:
parent
037dc94312
commit
5d154f4d38
2
dump.h
2
dump.h
|
@ -6,7 +6,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
/* Some things I use for debugging */
|
/* Some things I use for debugging */
|
||||||
#ifdef DEBUG
|
#ifndef DEBUG
|
||||||
# define DUMPf(fmt, args...)
|
# define DUMPf(fmt, args...)
|
||||||
#else
|
#else
|
||||||
# define DUMPf(fmt, args...) fprintf(stderr, "%s:%d " fmt "\n", __FILE__, __LINE__, ##args)
|
# define DUMPf(fmt, args...) fprintf(stderr, "%s:%d " fmt "\n", __FILE__, __LINE__, ##args)
|
||||||
|
|
Loading…
Reference in New Issue