summaryrefslogtreecommitdiff
path: root/obexd/src
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.de.marchi@gmail.com>2013-05-01 01:51:59 -0300
committerJohan Hedberg <johan.hedberg@intel.com>2013-05-02 09:03:48 +0300
commit94862127b46d7d428811c58e14a2531fe4f8cd64 (patch)
tree10e503da01fb5efaad28f5731aea8cb8bbb69e8d /obexd/src
parentf946c9e445ded3a256be5b4fd59e48b114f72b0e (diff)
downloadbluez-94862127b46d7d428811c58e14a2531fe4f8cd64.tar.gz
obexd: Get rid of gchar
Use plain char instead of gchar.
Diffstat (limited to 'obexd/src')
-rw-r--r--obexd/src/log.c2
-rw-r--r--obexd/src/plugin.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/obexd/src/log.c b/obexd/src/log.c
index a96b07b05..ace7ab645 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 c8ec64264..7d971b6c8 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;