[gnome-keyring] gcr: Fix build warning.
- From: Stefan Walter <stefw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-keyring] gcr: Fix build warning.
- Date: Thu, 21 Apr 2011 08:22:22 +0000 (UTC)
commit 28298a8fccac5ecb0deca8c9fd8e5f709d052e16
Author: Stef Walter <stefw collabora co uk>
Date: Thu Apr 21 10:22:04 2011 +0200
gcr: Fix build warning.
gcr/gcr-colons.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gcr/gcr-colons.c b/gcr/gcr-colons.c
index 4d9c01c..2695b1d 100644
--- a/gcr/gcr-colons.c
+++ b/gcr/gcr-colons.c
@@ -53,7 +53,7 @@ _gcr_colons_parse (const gchar *line, gssize n_line)
p = result->data;
for (;;) {
if (result->n_columns >= MAX_COLUMNS) {
- _gcr_debug ("too many colons in gnupg line: %.*s", n_line, line);
+ _gcr_debug ("too many colons in gnupg line: %.*s", (gint)n_line, line);
_gcr_colons_free (result);
return NULL;
}
@@ -68,7 +68,7 @@ _gcr_colons_parse (const gchar *line, gssize n_line)
p++;
}
- _gcr_debug ("parsed line %.*s into %d columns", n_line, line, result->n_columns);
+ _gcr_debug ("parsed line %.*s into %d columns", (gint)n_line, line, result->n_columns);
return result;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]