Diff between f946c9e445ded3a256be5b4fd59e48b114f72b0e and 94862127b46d7d428811c58e14a2531fe4f8cd64

Changed Files

File Additions Deletions Status
obexd/client/mns.c +3 -3 modified
obexd/src/log.c +1 -1 modified
obexd/src/plugin.c +2 -2 modified

Full Patch

diff --git a/obexd/client/mns.c b/obexd/client/mns.c
index 83fa1ef..8095b9e 100644
--- a/obexd/client/mns.c
+++ b/obexd/client/mns.c
@@ -214,12 +214,12 @@ static struct map_event_report_parser {
 };
 
 static void event_report_element(GMarkupParseContext *ctxt,
-				const gchar *element, const gchar **names,
-				const gchar **values, gpointer user_data,
+				const char *element, const char **names,
+				const char **values, gpointer user_data,
 								GError **gerr)
 {
 	struct map_event *event = user_data;
-	const gchar *key;
+	const char *key;
 	int i;
 
 	if (strcasecmp("event", element) != 0)
diff --git a/obexd/src/log.c b/obexd/src/log.c
index a96b07b..ace7ab6 100644
--- a/obexd/src/log.c
+++ b/obexd/src/log.c
@@ -69,7 +69,7 @@ void obex_debug(const char *format, ...)
 extern struct obex_debug_desc __start___debug[];
 extern struct obex_debug_desc __stop___debug[];
 
-static gchar **enabled = NULL;
+static char **enabled = NULL;
 
 static gboolean is_enabled(struct obex_debug_desc *desc)
 {
diff --git a/obexd/src/plugin.c b/obexd/src/plugin.c
index c8ec642..7d971b6 100644
--- a/obexd/src/plugin.c
+++ b/obexd/src/plugin.c
@@ -110,8 +110,8 @@ static gboolean check_plugin(struct obex_plugin_desc *desc,
 
 gboolean plugin_init(const char *pattern, const char *exclude)
 {
-	gchar **patterns = NULL;
-	gchar **excludes = NULL;
+	char **patterns = NULL;
+	char **excludes = NULL;
 	GDir *dir;
 	const char *file;
 	unsigned int i;