summaryrefslogtreecommitdiff
path: root/libempathy
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-04-18 11:12:47 +1000
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-04-18 11:12:47 +1000
commit38e5806e7b0bc11609b5adff84de7a02134fdd59 (patch)
tree22c805944502e1057781ee77676ec1bf23327016 /libempathy
parent3222040d0262eab66492cb782e37ac52122dd098 (diff)
downloadempathy-38e5806e7b0bc11609b5adff84de7a02134fdd59.tar.gz
Use pointless g* types for consistency
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-utils.c8
-rw-r--r--libempathy/empathy-utils.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index d14b47f26..aaee37b95 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -795,10 +795,10 @@ empathy_get_x509_certificate_hostname (gnutls_x509_crt_t cert)
return NULL;
}
-char *
-empathy_format_currency (int amount,
- guint scale,
- const char *currency)
+gchar *
+empathy_format_currency (gint amount,
+ guint scale,
+ const gchar *currency)
{
#define MINUS "\342\210\222"
#define EURO "\342\202\254"
diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h
index a29fe0106..7ec96be13 100644
--- a/libempathy/empathy-utils.h
+++ b/libempathy/empathy-utils.h
@@ -102,7 +102,7 @@ gboolean empathy_folks_persona_is_interesting (FolksPersona *persona);
gchar * empathy_get_x509_certificate_hostname (gnutls_x509_crt_t cert);
-char *empathy_format_currency (int amount, guint scale, const char *currency);
+gchar *empathy_format_currency (gint amount, guint scale, const gchar *currency);
G_END_DECLS