aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/utils.c2
-rw-r--r--libsylph/utils.h2
2 files changed, 2 insertions, 2 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];
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,