diff options
author | James Booth <boothj5@gmail.com> | 2016-08-21 15:25:49 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-08-21 15:25:49 +0100 |
commit | 088606280626b8b4d7f303e54f69efd7d3bdb76a (patch) | |
tree | 6e37efdd1f8cc3a9bb1d5b04507d0c0f4427a5ac /tests/unittests/xmpp | |
parent | a52230978fbddc7f14460e2543621824689299d9 (diff) | |
download | profani-tty-088606280626b8b4d7f303e54f69efd7d3bdb76a.tar.gz |
Use hash table for bookmarks
Diffstat (limited to 'tests/unittests/xmpp')
-rw-r--r-- | tests/unittests/xmpp/stub_xmpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/xmpp/stub_xmpp.c b/tests/unittests/xmpp/stub_xmpp.c index c474e82a..e4ef7ea1 100644 --- a/tests/unittests/xmpp/stub_xmpp.c +++ b/tests/unittests/xmpp/stub_xmpp.c @@ -244,7 +244,7 @@ gboolean bookmark_join(const char *jid) return FALSE; } -const GList * bookmark_get_list(void) +GList * bookmark_get_list(void) { return (GList *)mock(); } |