[Spice-devel] [PATCH 2/5] Use MIN macro to compute a minumim
Frediano Ziglio
fziglio at redhat.com
Wed Jun 10 02:45:25 PDT 2015
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
server/red_channel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/red_channel.c b/server/red_channel.c
index 0e34865..9c743a4 100644
--- a/server/red_channel.c
+++ b/server/red_channel.c
@@ -2308,7 +2308,7 @@ uint32_t red_channel_min_pipe_size(RedChannel *channel)
RING_FOREACH(link, &channel->clients) {
rcc = SPICE_CONTAINEROF(link, RedChannelClient, channel_link);
- pipe_size = pipe_size < rcc->pipe_size ? pipe_size : rcc->pipe_size;
+ pipe_size = MIN(pipe_size, rcc->pipe_size);
}
return pipe_size == ~0 ? 0 : pipe_size;
}
--
2.1.0
More information about the Spice-devel
mailing list