summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-04-15 13:48:17 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-04-15 16:49:41 -0500
commit632dc4c7e96b100b162c778eb78ec69ace2939cb (patch)
tree54255c676ee576bd7c2a63c80b0150af4452093c
parent1ca8671d11f9dc16bf65b077648eece75c19f189 (diff)
downloadofono-632dc4c7e96b100b162c778eb78ec69ace2939cb.tar.bz2
Fix: No glib types in oFono public API
-rw-r--r--include/stk.h2
-rw-r--r--src/stk.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/stk.h b/include/stk.h
index 5309b87f..ad3f6c56 100644
--- a/include/stk.h
+++ b/include/stk.h
@@ -63,7 +63,7 @@ void ofono_stk_set_data(struct ofono_stk *stk, void *data);
void *ofono_stk_get_data(struct ofono_stk *stk);
void ofono_stk_proactive_command_notify(struct ofono_stk *stk,
- int length, const guint8 *pdu);
+ int length, const unsigned char *pdu);
#ifdef __cplusplus
}
diff --git a/src/stk.c b/src/stk.c
index 74b6b347..195725c9 100644
--- a/src/stk.c
+++ b/src/stk.c
@@ -81,7 +81,7 @@ void __ofono_cbs_sim_download(struct ofono_stk *stk,
}
void ofono_stk_proactive_command_notify(struct ofono_stk *stk,
- int length, const guint8 *pdu)
+ int length, const unsigned char *pdu)
{
struct stk_command *cmd;
char *buf;