diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2014-06-06 16:51:52 +0900 |
---|---|---|
committer | fujiwarat <takao.fujiwara1@gmail.com> | 2014-06-06 16:51:52 +0900 |
commit | 0d17c2507d38e62a149f3fe7d32e6c3e7c3bcd0e (patch) | |
tree | 5f5e99253e349ac4f0b89107338a2dd09fdfcf0b /src | |
parent | f4d7ceafb588737212a21216cb30ccdc9ff02cdf (diff) | |
download | ibus-0d17c2507d38e62a149f3fe7d32e6c3e7c3bcd0e.tar.gz |
tests/ibus-config: Fix typo in function name
"success" was misspelt "sucess"
BUG=http://code.google.com/p/ibus/issues/detail?id=1712
Review URL: https://codereview.appspot.com/102160043
Patch from Christophe Fergeau <cfergeau@redhat.com>.
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/ibus-config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/ibus-config.c b/src/tests/ibus-config.c index b6f9e68f..e50e78a2 100644 --- a/src/tests/ibus-config.c +++ b/src/tests/ibus-config.c @@ -7,9 +7,9 @@ static IBusBus *bus = NULL; static int create_config_count = 0; static void -finish_create_config_async_sucess (GObject *source_object, - GAsyncResult *res, - gpointer user_data) +finish_create_config_async_success (GObject *source_object, + GAsyncResult *res, + gpointer user_data) { GMainLoop *loop = (GMainLoop *)user_data; GError *error = NULL; @@ -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); |