Fix logic inversion in dump.h

This commit is contained in:
Neale Pickett 2017-03-19 16:03:31 -06:00
parent 037dc94312
commit 5d154f4d38
1 changed files with 1 additions and 1 deletions

2
dump.h
View File

@ -6,7 +6,7 @@
#include <string.h>
/* Some things I use for debugging */
#ifdef DEBUG
#ifndef DEBUG
# define DUMPf(fmt, args...)
#else
# define DUMPf(fmt, args...) fprintf(stderr, "%s:%d " fmt "\n", __FILE__, __LINE__, ##args)