aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2014-10-26 18:47:30 +0100
committerHarald Welte <laforge@gnumonks.org>2014-10-26 19:50:55 +0100
commit67354b1b4ee412a8e878a53607fcd65f2b344948 (patch)
tree439767373e229a1ad237131bf3e155992ff8d222
parent55790aa09a8f92d437ea06b3ef2c74465612fa8b (diff)
sim: add missing const to reader_ops member of reader_handle
-rw-r--r--include/osmocom/sim/sim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/sim/sim.h b/include/osmocom/sim/sim.h
index d68d7c2c..80d1fcd1 100644
--- a/include/osmocom/sim/sim.h
+++ b/include/osmocom/sim/sim.h
@@ -334,7 +334,7 @@ enum osim_reader_driver {
struct osim_reader_hdl {
/*! \brief member in global list of readers */
struct llist_head list;
- struct osim_reader_ops *ops;
+ const struct osim_reader_ops *ops;
uint32_t proto_supported;
void *priv;
/*! \brief current card, if any */