summary refs log tree commit diff stats
path: root/src/common
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2015-03-20 04:56:04 -0400
committerTingPing <tingping@tingping.se>2015-03-20 04:58:00 -0400
commitae2e5ab09245909c164a9e4a98da062dbcfb5576 (patch)
tree16d3d5a68cc060376717b163493472f2c567a1d2 /src/common
parent167eb11ea7345b63f6a5f958ea9f04ff01745854 (diff)
Fix conflicting type in header
gsize and size_t are not the same thing
Diffstat (limited to 'src/common')
-rw-r--r--src/common/util.h2
1 files changed, 1 insertions, 1 deletions
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