diff --git a/src/util.c b/src/util.c index 1ad431b..1e868f6 100644 --- a/src/util.c +++ b/src/util.c @@ -143,7 +143,7 @@ void FREE(void *ptr) if (ptr) { free(ptr); } else { - lprintf(fatal, "attempted to double free a pointer!\n"); + lprintf(fatal, "attempted to free NULL ptr!\n"); } }