[gnome-software/gnome-3-12] Fix the formatting specifiers for the i386 build with newer GCCs
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/gnome-3-12] Fix the formatting specifiers for the i386 build with newer GCCs
- Date: Mon, 12 May 2014 09:35:50 +0000 (UTC)
commit 6476d58fa896b9ccef2cc2fbdcc69079a8890651
Author: Richard Hughes <richard hughsie com>
Date: Mon Apr 28 16:51:04 2014 +0100
Fix the formatting specifiers for the i386 build with newer GCCs
Apparently the new GCC is really anal about format specifiers now.
src/gs-app.c | 7 +++++--
src/gs-profile.c | 8 +++++---
src/plugins/gs-plugin-fedora-tagger-ratings.c | 7 ++++---
3 files changed, 14 insertions(+), 8 deletions(-)
---
diff --git a/src/gs-app.c b/src/gs-app.c
index d3458e4..1fb2402 100644
--- a/src/gs-app.c
+++ b/src/gs-app.c
@@ -308,8 +308,11 @@ gs_app_to_string (GsApp *app)
g_string_append_printf (str, "\tpixbuf:\t%p\n", priv->pixbuf);
if (priv->featured_pixbuf != NULL)
g_string_append_printf (str, "\tfeatured-pixbuf:\t%p\n", priv->featured_pixbuf);
- if (priv->install_date != 0)
- g_string_append_printf (str, "\tinstall-date:\t%lu\n", priv->install_date);
+ if (priv->install_date != 0) {
+ g_string_append_printf (str, "\tinstall-date:\t%"
+ G_GUINT64_FORMAT "\n",
+ priv->install_date);
+ }
if (priv->size != 0) {
g_string_append_printf (str, "\tsize:\t%" G_GUINT64_FORMAT "k\n",
priv->size / 1024);
diff --git a/src/gs-profile.c b/src/gs-profile.c
index c70bc99..61ad9cc 100644
--- a/src/gs-profile.c
+++ b/src/gs-profile.c
@@ -238,8 +238,9 @@ gs_profile_dump (GsProfile *profile)
g_print ("#");
for (j = bar_offset + bar_length; j < console_width + 1; j++)
g_print (" ");
- g_print ("@%04lims ", (item->time_stop - time_start) / 1000);
- g_print ("%s %lims\n", item->id, time_ms);
+ g_print ("@%04" G_GINT64_FORMAT "ms ",
+ (item->time_stop - time_start) / 1000);
+ g_print ("%s %" G_GINT64_FORMAT "ms\n", item->id, time_ms);
}
/* not all complete */
@@ -250,7 +251,8 @@ gs_profile_dump (GsProfile *profile)
for (j = 0; j < console_width; j++)
g_print ("$");
time_ms = (item->time_stop - item->time_start) / 1000;
- g_print (" @????ms %s %lims\n", item->id, time_ms);
+ g_print (" @????ms %s %" G_GINT64_FORMAT "ms\n",
+ item->id, time_ms);
}
}
}
diff --git a/src/plugins/gs-plugin-fedora-tagger-ratings.c b/src/plugins/gs-plugin-fedora-tagger-ratings.c
index d73d3e6..eca5ce3 100644
--- a/src/plugins/gs-plugin-fedora-tagger-ratings.c
+++ b/src/plugins/gs-plugin-fedora-tagger-ratings.c
@@ -568,14 +568,15 @@ gs_plugin_fedora_tagger_load_db (GsPlugin *plugin, GError **error)
if (!ret)
goto out;
} else if (now - mtime > GS_PLUGIN_FEDORA_TAGGER_AGE_MAX) {
- g_debug ("fedora-tagger data was %li days old, so regetting",
+ g_debug ("fedora-tagger data was %" G_GINT64_FORMAT
+ " days old, so regetting",
(now - mtime) / ( 60 * 60 * 24));
ret = gs_plugin_fedora_tagger_download (plugin, error);
if (!ret)
goto out;
} else {
- g_debug ("fedora-tagger data %li days old, "
- "so no need to redownload",
+ g_debug ("fedora-tagger data %" G_GINT64_FORMAT
+ " days old, so no need to redownload",
(now - mtime) / ( 60 * 60 * 24));
}
out:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]