From: Stefan Metzmacher Date: Sat, 31 Jan 2009 07:53:26 +0000 (+0100) Subject: heimdal: void functions should not return a value X-Git-Tag: samba-4.0.0alpha7~417^2~213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6028e8f34626e7443ee58becaf1d27b9e2c56088;p=thirdparty%2Fsamba.git heimdal: void functions should not return a value metze --- diff --git a/source4/heimdal/lib/krb5/error_string.c b/source4/heimdal/lib/krb5/error_string.c index db2df4798c3..6374fa17aef 100644 --- a/source4/heimdal/lib/krb5/error_string.c +++ b/source4/heimdal/lib/krb5/error_string.c @@ -271,7 +271,7 @@ void KRB5_LIB_FUNCTION krb5_clear_error_string(krb5_context context) __attribute__((deprecated)) { - return krb5_clear_error_message(context); + krb5_clear_error_message(context); } #endif /* !HEIMDAL_SMALLER */