diff options
author | Max <msuraev@sysmocom.de> | 2016-09-28 15:38:55 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-09-30 12:31:50 +0000 |
commit | 2bb65be159dfdabf664fec569b343320301701b0 (patch) | |
tree | 208b698a6279ffd9341ab14d411b55f62a84c666 /include | |
parent | 56155c16b91428c4838df1d6010cdb7acdb540ce (diff) |
Mark inline header function as static
Change-Id: Ib751f7467d54cbcae76f72448a38e30f2ecc63d4
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/codec/codec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/codec/codec.h b/include/osmocom/codec/codec.h index 74eca461..fb127b54 100644 --- a/include/osmocom/codec/codec.h +++ b/include/osmocom/codec/codec.h @@ -46,7 +46,7 @@ enum osmo_amr_quality { * \param[in] ft AMR Frame Type * \returns true if AMR with given Frame Type contains voice, false otherwise */ -inline bool osmo_amr_is_speech(enum osmo_amr_type ft) +static inline bool osmo_amr_is_speech(enum osmo_amr_type ft) { switch (ft) { case AMR_4_75: |