diff options
author | Ben Kaduk <kaduk@mit.edu> | 2012-06-27 19:10:16 -0400 |
---|---|---|
committer | Ben Kaduk <kaduk@mit.edu> | 2012-07-03 00:43:45 -0400 |
commit | e8d1c9c2a2c4f47d62780146eba87fb0b1235142 (patch) | |
tree | 077cc16429b14ec254c5fe796b231c9866aa3719 /src/tests | |
parent | 9ea3bf887a31e8bbfe6a84899a095187319c828a (diff) | |
download | krb5-e8d1c9c2a2c4f47d62780146eba87fb0b1235142.tar.gz krb5-e8d1c9c2a2c4f47d62780146eba87fb0b1235142.tar.xz krb5-e8d1c9c2a2c4f47d62780146eba87fb0b1235142.zip |
Pass empty string instead of NULL to printf-like
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/misc/test_chpw_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/misc/test_chpw_message.c b/src/tests/misc/test_chpw_message.c index bf3169a25..aef96b13f 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(); } } |