]> spindle.queued.net Git - midori/commitdiff
Use G_GINT64_FORMAT to convert gint64 to a string
authorChristian Dywan <christian@twotoasts.de>
Thu, 9 Jul 2009 17:43:08 +0000 (18:43 +0100)
committerChristian Dywan <christian@twotoasts.de>
Thu, 9 Jul 2009 17:43:08 +0000 (18:43 +0100)
katze/katze-item.c

index be81ff7671fed8e48c05bd0104a399245dc10c6a..30813cfa83912777be74249d6e197d57cbb1754e 100644 (file)
@@ -584,7 +584,12 @@ katze_item_set_meta_integer (KatzeItem*   item,
     g_return_if_fail (KATZE_IS_ITEM (item));
     g_return_if_fail (key != NULL);
 
-    katze_item_set_meta_data_value (item, key, g_strdup_printf ("%lu", value));
+    katze_item_set_meta_data_value (item, key,
+    #ifdef G_GINT64_FORMAT
+        g_strdup_printf ("%" G_GINT64_FORMAT, value));
+    #else
+        g_strdup_printf ("%li", value));
+    #endif
 }
 
 /**