[wing] tests/named-pipe: fix typo
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [wing] tests/named-pipe: fix typo
- Date: Wed, 13 Jul 2016 14:24:10 +0000 (UTC)
commit c710f05a71c8f6dcb948de1b2ded39f0d0a2cdfb
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Wed Jul 13 16:23:53 2016 +0200
tests/named-pipe: fix typo
tests/named-pipe.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tests/named-pipe.c b/tests/named-pipe.c
index e059f57..73253cf 100644
--- a/tests/named-pipe.c
+++ b/tests/named-pipe.c
@@ -49,14 +49,14 @@ accepted_cb (GObject *source,
{
WingNamedPipeListener *listener = WING_NAMED_PIPE_LISTENER (source);
WingNamedPipeConnection *conn;
- gboolean *sucess = user_data;
+ gboolean *success = user_data;
GError *error = NULL;
conn = wing_named_pipe_listener_accept_finish (listener, result, NULL, &error);
g_assert_no_error (error);
g_object_unref (conn);
- *sucess = TRUE;
+ *success = TRUE;
}
static void
@@ -66,14 +66,14 @@ connected_cb (GObject *source,
{
WingNamedPipeClient *client = WING_NAMED_PIPE_CLIENT (source);
WingNamedPipeConnection *conn;
- gboolean *sucess = user_data;
+ gboolean *success = user_data;
GError *error = NULL;
conn = wing_named_pipe_client_connect_finish (client, result, &error);
g_assert_no_error (error);
g_object_unref (conn);
- *sucess = TRUE;
+ *success = TRUE;
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]