summaryrefslogtreecommitdiff
path: root/loaders/python/peas-plugin-loader-python.c
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2023-03-20 22:03:47 -0700
committerChristian Hergert <chergert@redhat.com>2023-03-22 16:44:45 -0700
commit40b77bd0fd2b34d19803609d7c07bf3d6bf50a1b (patch)
tree1b3d0a49ced83eee832bf85f58b3e14dcec6e9ff /loaders/python/peas-plugin-loader-python.c
parent1b3740a242ed7e7ab2c4940b1d8751d7f2e18bf8 (diff)
downloadlibpeas-40b77bd0fd2b34d19803609d7c07bf3d6bf50a1b.tar.gz
janitorial: use char and int over gchar and gint
Diffstat (limited to 'loaders/python/peas-plugin-loader-python.c')
-rw-r--r--loaders/python/peas-plugin-loader-python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loaders/python/peas-plugin-loader-python.c b/loaders/python/peas-plugin-loader-python.c
index d54e023..7106b50 100644
--- a/loaders/python/peas-plugin-loader-python.c
+++ b/loaders/python/peas-plugin-loader-python.c
@@ -161,7 +161,7 @@ peas_plugin_loader_python_load (PeasPluginLoader *loader,
PeasPluginInfo *info)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
- const gchar *module_dir, *module_name;
+ const char *module_dir, *module_name;
PyObject *pymodule;
PyGILState_STATE state = PyGILState_Ensure ();