30 lines
782 B
Text
30 lines
782 B
Text
$NetBSD: patch-ad,v 1.4 2014/06/26 20:36:53 asau Exp $
|
|
|
|
--- ROX-Filer/src/support.c.orig 2009-07-18 14:23:18.000000000 +0000
|
|
+++ ROX-Filer/src/support.c
|
|
@@ -21,6 +21,7 @@
|
|
|
|
#include "config.h"
|
|
|
|
+#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
@@ -272,7 +273,7 @@ const char *format_size(off_t size)
|
|
units = _("B");
|
|
|
|
g_free(buffer);
|
|
- buffer = g_strdup_printf("%" SIZE_FMT " %s", size, units);
|
|
+ buffer = g_strdup_printf("%" SIZE_FMT " %s", (intmax_t) size, units);
|
|
|
|
return buffer;
|
|
}
|
|
@@ -309,7 +310,7 @@ const char *format_size_aligned(off_t si
|
|
units = ' ';
|
|
|
|
g_free(buffer);
|
|
- buffer = g_strdup_printf("%4" SIZE_FMT "%c", size, units);
|
|
+ buffer = g_strdup_printf("%4" SIZE_FMT "%c", (intmax_t) size, units);
|
|
|
|
return buffer;
|
|
}
|