diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2014-05-24 17:06:01 +0200 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2014-05-26 14:11:07 +0200 |
commit | bed0f434ff23931b1ea98116ebe5f3219873dbb3 (patch) | |
tree | 3d2c72fc2557601c39781bf03ddded51fbdd2db9 | |
parent | c03cda02392da0195c7f38a7814151e0f5883992 (diff) |
tests/ibus-config: Fix typo in function name
"success" was misspelt "sucess"
-rw-r--r-- | src/tests/ibus-config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/ibus-config.c b/src/tests/ibus-config.c index b6f9e68f..133e57a9 100644 --- a/src/tests/ibus-config.c +++ b/src/tests/ibus-config.c @@ -7,7 +7,7 @@ static IBusBus *bus = NULL; static int create_config_count = 0; static void -finish_create_config_async_sucess (GObject *source_object, +finish_create_config_async_success (GObject *source_object, GAsyncResult *res, gpointer user_data) { @@ -54,7 +54,7 @@ test_create_config_async (void) loop = g_main_loop_new (NULL, TRUE); ibus_config_new_async (ibus_bus_get_connection (bus), NULL, - finish_create_config_async_sucess, + finish_create_config_async_success, loop); g_main_loop_run (loop); g_main_loop_unref (loop); |