aboutsummaryrefslogtreecommitdiff
path: root/libsylph/utils.h
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.h
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.h')
-rw-r--r--libsylph/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/utils.h b/libsylph/utils.h
index 8ef85896..b5cb3a76 100644
--- a/libsylph/utils.h
+++ b/libsylph/utils.h
@@ -213,7 +213,7 @@ gint to_number (const gchar *nstr);
gchar *itos_buf (gchar *nstr,
gint n);
gchar *itos (gint n);
-gchar *to_human_readable (off_t size);
+gchar *to_human_readable (gint64 size);
/* alternative string functions */
gint strcmp2 (const gchar *s1,