mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-26 02:28:37 +00:00
display-channel: Remove useless parenthesis
Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
This commit is contained in:
parent
9a0d8b2db8
commit
b27e0e6f0b
@ -215,7 +215,7 @@ int display_channel_get_streams_timeout(DisplayChannel *display)
|
||||
if (delta < NSEC_PER_MILLISEC) {
|
||||
return 0;
|
||||
}
|
||||
timeout = MIN(timeout, (unsigned int)(delta / (NSEC_PER_MILLISEC)));
|
||||
timeout = MIN(timeout, (unsigned int)(delta / NSEC_PER_MILLISEC));
|
||||
}
|
||||
return timeout;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user