[jsonrpc-glib] client: fix typo in static function name



commit 626336c61b9a41fc573514f7b67591ecc80ccfe2
Author: Christian Hergert <chergert redhat com>
Date:   Mon Feb 19 13:32:31 2018 -0800

    client: fix typo in static function name

 src/jsonrpc-client.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/jsonrpc-client.c b/src/jsonrpc-client.c
index c24e8ce..59fd53f 100644
--- a/src/jsonrpc-client.c
+++ b/src/jsonrpc-client.c
@@ -572,7 +572,7 @@ jsonrpc_client_new (GIOStream *io_stream)
 }
 
 static void
-jsonrpc_client_remove_from_invocatoins (JsonrpcClient *self,
+jsonrpc_client_remove_from_invocations (JsonrpcClient *self,
                                         GTask         *task)
 {
   JsonrpcClientPrivate *priv = jsonrpc_client_get_instance_private (self);
@@ -596,7 +596,7 @@ jsonrpc_client_call_notify_completed (JsonrpcClient *self,
   g_assert (g_str_equal (pspec->name, "completed"));
   g_assert (G_IS_TASK (task));
 
-  jsonrpc_client_remove_from_invocatoins (self, task);
+  jsonrpc_client_remove_from_invocations (self, task);
 }
 
 static void
@@ -618,7 +618,7 @@ jsonrpc_client_call_write_cb (GObject      *object,
 
   if (!jsonrpc_output_stream_write_message_finish (stream, result, &error))
     {
-      jsonrpc_client_remove_from_invocatoins (self, task);
+      jsonrpc_client_remove_from_invocations (self, task);
       jsonrpc_client_panic (self, error);
       g_task_return_error (task, g_steal_pointer (&error));
       return;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]