summaryrefslogtreecommitdiff
path: root/libpeas/peas-debug.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 /libpeas/peas-debug.c
parent1b3740a242ed7e7ab2c4940b1d8751d7f2e18bf8 (diff)
downloadlibpeas-40b77bd0fd2b34d19803609d7c07bf3d6bf50a1b.tar.gz
janitorial: use char and int over gchar and gint
Diffstat (limited to 'libpeas/peas-debug.c')
-rw-r--r--libpeas/peas-debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpeas/peas-debug.c b/libpeas/peas-debug.c
index 9cdd023..e0086c6 100644
--- a/libpeas/peas-debug.c
+++ b/libpeas/peas-debug.c
@@ -27,9 +27,9 @@
static void
-debug_log_handler (const gchar *log_domain,
+debug_log_handler (const char *log_domain,
GLogLevelFlags log_level,
- const gchar *message,
+ const char *message,
gpointer user_data)
{
}
@@ -46,7 +46,7 @@ peas_debug_init (void)
}
else
{
- const gchar *g_messages_debug;
+ const char *g_messages_debug;
g_messages_debug = g_getenv ("G_MESSAGES_DEBUG");
@@ -56,7 +56,7 @@ peas_debug_init (void)
}
else
{
- gchar *new_g_messages_debug;
+ char *new_g_messages_debug;
new_g_messages_debug = g_strconcat (g_messages_debug, " ",
G_LOG_DOMAIN, NULL);