diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-21 11:45:29 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-26 12:35:21 +0200 |
commit | 8f09765340c626aea915c8ca78c0214d5d89c317 (patch) | |
tree | 9b81842d1ac52174820bbcf82fdf2020e0123056 /tests | |
parent | 62223ff3a7fd8fc0eb008d9e9186625c022112ed (diff) |
properly name _finish functions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-searches.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-searches.c b/tests/test-searches.c index 523aeb5..698f1af 100644 --- a/tests/test-searches.c +++ b/tests/test-searches.c @@ -13,7 +13,7 @@ static GMainLoop *loop = NULL; static void got_dates_cb (GObject *obj, GAsyncResult *result, gpointer user_data) { - GList *ret = tpl_log_manager_get_dates_async_finish (result, NULL); + GList *ret = tpl_log_manager_get_dates_finish (result, NULL); for (; ret != NULL; ret = g_list_next (ret)) { |