summaryrefslogtreecommitdiff
path: root/plugins/test.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-03-02 16:57:39 +0000
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-03-02 16:57:39 +0000
commit20ea524785c3d68eeedf8c19d32203a35514af62 (patch)
tree6bb5d446702d1df5568edbc54f9bbf688e96b681 /plugins/test.c
parent461f158be756b85020b7f16649aac76863dcf17d (diff)
test plugin: stop calling a non-empty strv "empty"
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'plugins/test.c')
-rw-r--r--plugins/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/test.c b/plugins/test.c
index 3326c3e3f..60abbf1a4 100644
--- a/plugins/test.c
+++ b/plugins/test.c
@@ -505,9 +505,9 @@ test_channel_manager_type_foreach_channel_class (GType type,
GHashTable *table = tp_asv_new (
"cookies", G_TYPE_STRING, "lolbags",
NULL);
- const gchar * const empty[] = { "omg", "hi mum!", NULL };
+ const gchar * const chock_a_block_full_of_strings[] = {"omg", "hi mum!", NULL };
- func (type, table, empty, user_data);
+ func (type, table, chock_a_block_full_of_strings, user_data);
g_hash_table_destroy (table);
}