Browse Source

tsilo: remove inline from free_ts_transaction() definition

- the prototype is without, resulting in compile warning
Daniel-Constantin Mierla 9 years ago
parent
commit
311ac224b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/tsilo/ts_hash.c

+ 1 - 1
modules/tsilo/ts_hash.c

@@ -422,7 +422,7 @@ void remove_ts_transaction(ts_transaction_t* ts_t)
  * \brief Destroy a transaction and free memory
  * \param tma destroyed transaction
  */
-inline void free_ts_transaction(void *ts_t)
+void free_ts_transaction(void *ts_t)
 {
 	shm_free((struct ts_transaction*)ts_t);
 	ts_t = 0;