summaryrefslogtreecommitdiff
path: root/loaders
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2013-02-14 03:35:48 -0800
committerGarrett Regier <garrettregier@gmail.com>2013-02-14 03:45:23 -0800
commit7415d654a6b10252c4da5b6e926a92c8f9ea1e72 (patch)
tree9a0b131260d3783bd5093544b9982bbbc2379dac /loaders
parent2a367a4228a211078c2c042440dccc6efe516455 (diff)
downloadlibpeas-7415d654a6b10252c4da5b6e926a92c8f9ea1e72.tar.gz
Fix a few typos
Diffstat (limited to 'loaders')
-rw-r--r--loaders/python/peas-plugin-loader-python.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loaders/python/peas-plugin-loader-python.c b/loaders/python/peas-plugin-loader-python.c
index 6769ec3..1a4d67e 100644
--- a/loaders/python/peas-plugin-loader-python.c
+++ b/loaders/python/peas-plugin-loader-python.c
@@ -370,7 +370,7 @@ peas_plugin_loader_python_initialize (PeasPluginLoader *loader)
{
PeasPluginLoaderPython *pyloader = PEAS_PLUGIN_LOADER_PYTHON (loader);
PyObject *mdict, *gettext, *install, *gettext_args;
- gchar *prgname;
+ const gchar *prgname;
#if PY_VERSION_HEX < 0x03000000
const char *argv[] = { "", NULL };
#else
@@ -442,7 +442,7 @@ peas_plugin_loader_python_initialize (PeasPluginLoader *loader)
pygobject_init (PYGOBJECT_MAJOR_VERSION, PYGOBJECT_MINOR_VERSION, PYGOBJECT_MICRO_VERSION);
if (PyErr_Occurred ())
{
- g_warning ("Error initializing Python Plugin Loader:"
+ g_warning ("Error initializing Python Plugin Loader: "
"PyGObject initialization failed");
PyErr_Print ();