summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-04-15 13:49:03 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-04-15 16:49:41 -0500
commit92718427486c33c5ee3381c61280c6a842a169e0 (patch)
treeeffa98143b9b657209ba750c95fa2cc83a3b1c7a
parent632dc4c7e96b100b162c778eb78ec69ace2939cb (diff)
downloadofono-92718427486c33c5ee3381c61280c6a842a169e0.tar.bz2
Fix: Make the name a bit clearer
-rw-r--r--src/stk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stk.c b/src/stk.c
index 195725c9..733d13d6 100644
--- a/src/stk.c
+++ b/src/stk.c
@@ -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,