From ae2e5ab09245909c164a9e4a98da062dbcfb5576 Mon Sep 17 00:00:00 2001 From: TingPing Date: Fri, 20 Mar 2015 04:56:04 -0400 Subject: Fix conflicting type in header gsize and size_t are not the same thing --- src/common/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common') diff --git a/src/common/util.h b/src/common/util.h index 8b2762fb..2c9f790c 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -80,5 +80,5 @@ char *encode_sasl_pass_blowfish (char *user, char *pass, char *data); char *encode_sasl_pass_aes (char *user, char *pass, char *data); char *challengeauth_response (char *username, char *password, char *challenge); size_t strftime_validated (char *dest, size_t destsize, const char *format, const struct tm *time); -size_t strftime_utf8 (char *dest, size_t destsize, const char *format, time_t time); +gsize strftime_utf8 (char *dest, gsize destsize, const char *format, time_t time); #endif -- cgit 1.4.1