diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-04-15 16:07:12 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-04-15 16:49:43 -0500 |
commit | f1b61640f7c4b4e9d25b74c66a70810b19842c59 (patch) | |
tree | 21d1ed96713c65645fcb84cdadc88fe296e84cc7 | |
parent | 110de93f4c6d0dd2cdc6d13f0723611fba00fd82 (diff) | |
download | ofono-f1b61640f7c4b4e9d25b74c66a70810b19842c59.tar.bz2 |
Fix: should be unsigned char not guint8
-rw-r--r-- | drivers/atmodem/stk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atmodem/stk.c b/drivers/atmodem/stk.c index c4edfa0a..8cff4a22 100644 --- a/drivers/atmodem/stk.c +++ b/drivers/atmodem/stk.c @@ -90,7 +90,7 @@ error: } static void at_stk_envelope(struct ofono_stk *stk, int length, - const guint8 *command, + const unsigned char *command, ofono_stk_envelope_cb_t cb, void *data) { struct stk_data *sd = ofono_stk_get_data(stk); |