Skip to content

Commit

Permalink
'srtp_stream_hash_remove' should not retrun void expression
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Nov 27, 2023
1 parent 29eeb9a commit 9a24b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtp/srtp.c
Original file line number Diff line number Diff line change
Expand Up @@ -5003,7 +5003,7 @@ void srtp_stream_hash_remove(srtp_stream_hash_t hash,
srtp_stream_list_t list =
hash->list[stream_to_remove->ssrc & (SRTP_STREAM_HASH_SIZE - 1)];

return srtp_stream_list_remove(list, stream_to_remove);
srtp_stream_list_remove(list, stream_to_remove);
}

void srtp_stream_hash_for_each(srtp_stream_hash_t hash,
Expand Down

0 comments on commit 9a24b4a

Please sign in to comment.