mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
webrtc: avoid different versions of gnu-indent always wanting to change !!
Add some sneaky parenthesis to avoid always having to use git commit -n or revert out hunk of the change. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1664>
This commit is contained in:
parent
5bfe36746a
commit
04de1a161f
1 changed files with 1 additions and 1 deletions
|
@ -5555,7 +5555,7 @@ _generate_data_channel_id (GstWebRTCBin * webrtc)
|
|||
}
|
||||
|
||||
/* client must generate even ids, server must generate odd ids */
|
||||
if (new_id % 2 == ! !is_client)
|
||||
if (new_id % 2 == !(!is_client))
|
||||
continue;
|
||||
|
||||
channel = _find_data_channel_for_id (webrtc, new_id);
|
||||
|
|
Loading…
Reference in a new issue