diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-04-15 13:49:03 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-04-15 16:49:41 -0500 |
commit | 92718427486c33c5ee3381c61280c6a842a169e0 (patch) | |
tree | effa98143b9b657209ba750c95fa2cc83a3b1c7a /src | |
parent | 632dc4c7e96b100b162c778eb78ec69ace2939cb (diff) | |
download | ofono-92718427486c33c5ee3381c61280c6a842a169e0.tar.bz2 |
Fix: Make the name a bit clearer
Diffstat (limited to 'src')
-rw-r--r-- | src/stk.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -44,7 +44,7 @@ struct ofono_stk { struct ofono_atom *atom; }; -static void stk_cb_download_cb(const struct ofono_error *error, +static void stk_cbs_download_cb(const struct ofono_error *error, const unsigned char *data, int len, void *user) { if (error->type != OFONO_ERROR_TYPE_NO_ERROR) { @@ -77,7 +77,7 @@ void __ofono_cbs_sim_download(struct ofono_stk *stk, memcpy(tlv + 8, pdu, pdu_len); - stk->driver->envelope(stk, pdu_len + 8, tlv, stk_cb_download_cb, stk); + stk->driver->envelope(stk, pdu_len + 8, tlv, stk_cbs_download_cb, stk); } void ofono_stk_proactive_command_notify(struct ofono_stk *stk, |