Fix global variable name hidden by local variables in gio/tests/proxy.c

This commit is contained in:
Loic Le Page 2022-01-19 14:40:58 +01:00 committed by Philip Withnall
parent 13710c3699
commit 25ab7f1e74

View File

@ -67,9 +67,9 @@ print_and_free_error (GError *error)
}
static void
print_proxies (const gchar *info, gchar **proxies)
print_proxies (const gchar *local_info, gchar **proxies)
{
printf ("Proxies for URI '%s' are:\n", info);
printf ("Proxies for URI '%s' are:\n", local_info);
if (proxies == NULL || proxies[0] == NULL)
printf ("\tnone\n");