We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bce5306 commit 5b7b5f7Copy full SHA for 5b7b5f7
modules/tm/h_table.c
@@ -271,7 +271,7 @@ struct cell* build_cell( struct sip_msg* p_msg, int full_uas)
271
/* get timer set id based on the transaction pointer, but
272
* devide by 64 to avoid issues because pointer are 64 bits
273
* aligned */
274
- set = ( ((long)new_cell)>>tm_timer_shift ) % tm_table->timer_sets;
+ set = ( ((unsigned long)new_cell)>>tm_timer_shift ) % tm_table->timer_sets;
275
276
/* UAS */
277
#ifdef EXTRA_DEBUG
0 commit comments