diff --git a/src/Makefile b/src/Makefile index 84ddcce..d0f4a73 100644 --- a/src/Makefile +++ b/src/Makefile @@ -13,7 +13,6 @@ GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\" all: $(GCC_COM) $(files) $(libs) && echo && ./tests.sh - echo "$(file_libs)" notest: $(GCC_COM) $(file_libs) diff --git a/src/object.h b/src/object.h index ef04eba..3229ddd 100644 --- a/src/object.h +++ b/src/object.h @@ -11,7 +11,7 @@ #ifdef DEBUG #define printd(...) printf(__VA_ARGS__) #else -#define printd(...) (0) +#define printd(...) ; #endif #endif