Skip to content

Commit

Permalink
dialog: fix compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu committed Apr 2, 2019
1 parent 52b015e commit 6593bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dialog/dialog.c
Expand Up @@ -953,7 +953,7 @@ static int w_match_dialog(struct sip_msg *msg, void *seq_match_mode_val)
if (!seq_match_mode_val)
mm = SEQ_MATCH_DEFAULT;
else
mm = (int)seq_match_mode_val;
mm = (int)(long)seq_match_mode_val;

return api_match_dialog(msg, mm);
}
Expand Down

0 comments on commit 6593bd4

Please sign in to comment.