diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ APP=km-test -CFLAGS=-W -Wall -Wextra -pedantic -std=c11 -O2 +CFLAGS=-W -Wall -Wextra -Werror -pedantic -std=c11 -O2 OBJS=km-set.o km-draw.o km-load.o km-find.o km-rand.o km-solve.o main.o LIBS=-lm @@ -67,7 +67,7 @@ load_on_error( void * const cb_data ) { UNUSED(cb_data); - die(err); + die("load failed: %s", err); } static const km_load_cbs_t |