diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-07-08 18:56:13 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-05 22:55:12 +0800 |
commit | a3faa867baeb51bb55e04fb507aaa45038f760a5 (patch) | |
tree | 3f548604cd6a9bb43838a433348fc1ad185d7827 /libempathy/empathy-utils.c | |
parent | f8c37da731af9f6cd74e7a0ef08fa02059d981ac (diff) | |
download | gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar.gz gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar.bz2 gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar.lz gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar.xz gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.tar.zst gsoc2013-empathy-a3faa867baeb51bb55e04fb507aaa45038f760a5.zip |
Fix constness of various variables and parameters
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index fdc5b465d..c262c0a6f 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -57,7 +57,7 @@ /* Translation between presence types and string */ static struct { - gchar *name; + const gchar *name; TpConnectionPresenceType type; } presence_types[] = { { "available", TP_CONNECTION_PRESENCE_TYPE_AVAILABLE }, |