Fixes a typo

Argument to g_print should be part not path.
This commit is contained in:
Dhanuka Warusadura 2021-03-31 15:01:09 +05:30 committed by Daiki Ueno
parent 7e713cf65a
commit 06931ac755

View File

@ -380,7 +380,7 @@ on_retrieve_secret (GObject *source_object,
part = strrchr (path, '/');
if (part == NULL)
part = path;
g_print ("[%s]\n", path);
g_print ("[%s]\n", part);
} else {
g_print ("[no path]\n");
}