Skip to content

Commit

Permalink
Revert int -> unsigned (was to fix warning, turns out negative value …
Browse files Browse the repository at this point in the history
…is expected).
  • Loading branch information
nanangizz committed Jan 6, 2025
1 parent 4920150 commit 37678e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pjmedia/src/pjmedia/conference.c
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ static void op_disconnect_ports(pjmedia_conf *conf,
{
unsigned src_slot, sink_slot;
struct conf_port *src_port = NULL, *dst_port = NULL;
unsigned i;
int i;

/* Ports must be valid. */
src_slot = prm->disconnect_ports.src;
Expand Down

0 comments on commit 37678e7

Please sign in to comment.