From: Ben Kaduk Date: Wed, 27 Jun 2012 23:10:16 +0000 (-0400) Subject: Pass empty string instead of NULL to printf-like X-Git-Tag: krb5-1.11-alpha1~458 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8d1c9c2a2c4f47d62780146eba87fb0b1235142;p=thirdparty%2Fkrb5.git Pass empty string instead of NULL to printf-like --- diff --git a/src/tests/misc/test_chpw_message.c b/src/tests/misc/test_chpw_message.c index bf3169a250..aef96b13f3 100644 --- a/src/tests/misc/test_chpw_message.c +++ b/src/tests/misc/test_chpw_message.c @@ -96,7 +96,7 @@ static void check(krb5_error_code code) { if (code != 0) { - com_err("t_vfy_increds", code, NULL); + com_err("t_vfy_increds", code, ""); abort(); } }