Description: Fix typos detected by lintian
Author: Nick Morrott <nickm@debian.org>
Forwarded: https://github.com/altdesktop/playerctl/pull/223
Last-Update: 2021-02-07
---
--- a/playerctl/playerctl-player.c
+++ b/playerctl/playerctl-player.c
@@ -864,7 +864,7 @@
 
     GList *exact_match = pctl_player_name_find(names, name, pctl_bus_type_to_source(bus_type));
     if (exact_match != NULL) {
-        g_debug("Geting bus name for player %s by exact match", name);
+        g_debug("Getting bus name for player %s by exact match", name);
         PlayerctlPlayerName *name = exact_match->data;
         bus_name = g_strdup_printf(MPRIS_PREFIX "%s", name->instance);
         g_list_free_full(names, (GDestroyNotify)playerctl_player_name_free);
@@ -874,7 +874,7 @@
     GList *instance_match =
         pctl_player_name_find_instance(names, name, pctl_bus_type_to_source(bus_type));
     if (instance_match != NULL) {
-        g_debug("Geting bus name for player %s by instance match", name);
+        g_debug("Getting bus name for player %s by instance match", name);
         gchar *name = instance_match->data;
         bus_name = g_strdup_printf(MPRIS_PREFIX "%s", name);
         pctl_player_name_list_destroy(names);
