Author: benny
Date: 2007-01-15 14:29:18 +0000 (Mon, 15 Jan 2007)
New Revision: 24481
Modified:
libexo/trunk/ChangeLog
libexo/trunk/exo-hal/exo-hal.c
Log:
2007-01-15 Benedikt Meurer <[EMAIL PROTECTED]>
* exo-hal/exo-hal.c(exo_hal_volume_compute_display_name): Fix
compilation on adm64, using G_GUINT64_FORMAT instead of assuming
it's llu. Bug #2758.
Modified: libexo/trunk/ChangeLog
===================================================================
--- libexo/trunk/ChangeLog 2007-01-15 14:25:00 UTC (rev 24480)
+++ libexo/trunk/ChangeLog 2007-01-15 14:29:18 UTC (rev 24481)
@@ -1,3 +1,9 @@
+2007-01-15 Benedikt Meurer <[EMAIL PROTECTED]>
+
+ * exo-hal/exo-hal.c(exo_hal_volume_compute_display_name): Fix
+ compilation on adm64, using G_GUINT64_FORMAT instead of assuming
+ it's llu. Bug #2758.
+
2007-01-11 Benedikt Meurer <[EMAIL PROTECTED]>
* exo-mount/main.c(main): Fix unused label if HAL is not available.
Modified: libexo/trunk/exo-hal/exo-hal.c
===================================================================
--- libexo/trunk/exo-hal/exo-hal.c 2007-01-15 14:25:00 UTC (rev 24480)
+++ libexo/trunk/exo-hal/exo-hal.c 2007-01-15 14:29:18 UTC (rev 24481)
@@ -792,7 +792,7 @@
if (G_LIKELY (size < n * 10))
size_string = g_strdup_printf ("%.01f%c", ((gdouble) size)
/ ((gdouble) m), UNITS[n]);
else
- size_string = g_strdup_printf ("%llu%c", size / m,
UNITS[n]);
+ size_string = g_strdup_printf ("%" G_GUINT64_FORMAT "%c",
size / m, UNITS[n]);
break;
}
}
_______________________________________________
Xfce4-commits mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/xfce4-commits