Skip to content

Commit

Permalink
modules/ims_dialog: fix c compiler warning - removed inline
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybeepee committed Jun 13, 2016
1 parent 6e95094 commit f38dc1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/ims_dialog/dlg_hash.c
Expand Up @@ -187,7 +187,7 @@ static void destroy_entry_out(struct dlg_entry_out *d_entry_out) {
* \brief Destroy a dialog, run callbacks and free memory
* \param dlg destroyed dialog
*/
inline void destroy_dlg(struct dlg_cell *dlg) {
void destroy_dlg(struct dlg_cell *dlg) {
int ret = 0;
struct dlg_var *var;

Expand Down
2 changes: 1 addition & 1 deletion modules/ims_dialog/dlg_hash.h
Expand Up @@ -223,7 +223,7 @@ static inline void unlink_unsafe_dlg(struct dlg_entry *d_entry, struct dlg_cell
* \brief Destroy a dialog, run callbacks and free memory
* \param dlg destroyed dialog
*/
inline void destroy_dlg(struct dlg_cell *dlg);
void destroy_dlg(struct dlg_cell *dlg);


/*!
Expand Down

0 comments on commit f38dc1b

Please sign in to comment.