diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-01-31 08:53:26 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-01-31 08:54:01 +0100 |
commit | 6028e8f34626e7443ee58becaf1d27b9e2c56088 (patch) | |
tree | 11c4f99841755f4ad12f5c7211bd708e3c015e63 /source4/heimdal/lib/krb5 | |
parent | 0245b9b97363f08786c25d4412ed293ca6f94cd5 (diff) | |
download | samba-6028e8f34626e7443ee58becaf1d27b9e2c56088.tar.gz samba-6028e8f34626e7443ee58becaf1d27b9e2c56088.tar.bz2 samba-6028e8f34626e7443ee58becaf1d27b9e2c56088.zip |
heimdal: void functions should not return a value
metze
Diffstat (limited to 'source4/heimdal/lib/krb5')
-rw-r--r-- | source4/heimdal/lib/krb5/error_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/krb5/error_string.c b/source4/heimdal/lib/krb5/error_string.c index db2df4798c..6374fa17ae 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 */ |