aboutsummaryrefslogtreecommitdiff
path: root/libsylph/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libsylph/utils.c')
-rw-r--r--libsylph/utils.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libsylph/utils.c b/libsylph/utils.c
index e6703186..e99f3d3a 100644
--- a/libsylph/utils.c
+++ b/libsylph/utils.c
@@ -269,16 +269,16 @@ gchar *itos(gint n)
gchar *to_human_readable(gint64 size)
{
- static gchar str[10];
+ static gchar str[16];
if (size < 1024)
- g_snprintf(str, sizeof(str), _("%dB"), (gint)size);
- else if (size >> 10 < 1024)
- g_snprintf(str, sizeof(str), _("%.1fKB"), (gfloat)size / (1 << 10));
- else if (size >> 20 < 1024)
- g_snprintf(str, sizeof(str), _("%.2fMB"), (gfloat)size / (1 << 20));
+ g_snprintf(str, sizeof(str), "%dB", (gint)size);
+ else if ((size >> 10) < 1024)
+ g_snprintf(str, sizeof(str), "%.1fKB", (gfloat)size / (1 << 10));
+ else if ((size >> 20) < 1024)
+ g_snprintf(str, sizeof(str), "%.2fMB", (gfloat)size / (1 << 20));
else
- g_snprintf(str, sizeof(str), _("%.2fGB"), (gfloat)size / (1 << 30));
+ g_snprintf(str, sizeof(str), "%.2fGB", (gfloat)size / (1 << 30));
return str;
}