Fix conflicting type in header

gsize and size_t are not the same thing
This commit is contained in:
TingPing 2015-03-20 04:56:04 -04:00
parent 167eb11ea7
commit ae2e5ab092
1 changed files with 1 additions and 1 deletions

View 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