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:
Frediano Ziglio 2018-10-09 09:14:07 +01:00
parent 9a0d8b2db8
commit b27e0e6f0b

View File

@ -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;
}