aboutsummaryrefslogtreecommitdiff
path: root/libsylph/utils.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-14 08:07:48 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-11-14 08:07:48 +0000
commitf2493d0c45b0e2c12795a1f12ccd92f6f347f2f5 (patch)
tree1b038cee483805c7cdd8a2981e8809c6ece12834 /libsylph/utils.c
parent88add95ac772a31df8d315292ac5b173ebc094b6 (diff)
prevent integer overflow on summary status.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@742 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/utils.c')
-rw-r--r--libsylph/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/utils.c b/libsylph/utils.c
index 18612eaa..0cb484f0 100644
--- a/libsylph/utils.c
+++ b/libsylph/utils.c
@@ -267,7 +267,7 @@ gchar *itos(gint n)
return itos_buf(nstr, n);
}
-gchar *to_human_readable(off_t size)
+gchar *to_human_readable(gint64 size)
{
static gchar str[10];