]> jfr.im git - irc/hexchat/hexchat.git/commitdiff
Fix conflicting type in header
authorTingPing <redacted>
Fri, 20 Mar 2015 08:56:04 +0000 (04:56 -0400)
committerTingPing <redacted>
Fri, 20 Mar 2015 08:58:00 +0000 (04:58 -0400)
gsize and size_t are not the same thing

src/common/util.h

index 8b2762fbe8924d34e13db99cde714b60746bba4e..2c9f790c0933cae642b2d74ec7bbbcdc7efef136 100644 (file)
@@ -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