From cc3d335b768e1432ca7d1e8e580489983e587bd7 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Wed, 5 Feb 2014 18:39:23 +0100 Subject: [PATCH] maint: Change the text of the NULLSTR() macro to "" Eric Blake suggested to change this message to be different from the glibc's NULL deref protection message in printf to be able to differentiate errors. --- src/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.h b/src/internal.h index 4ba0e4194e..cef3da0328 100644 --- a/src/internal.h +++ b/src/internal.h @@ -244,7 +244,7 @@ /* * Use this when passing possibly-NULL strings to printf-a-likes. */ -# define NULLSTR(s) ((s) ? (s) : "(null)") +# define NULLSTR(s) ((s) ? (s) : "") /** * TODO: -- 2.47.2