From: David Goulet Date: Tue, 12 Nov 2013 18:41:23 +0000 (-0500) Subject: Fix: bad type of return variable X-Git-Tag: v2.4.0-rc1~53 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=13021756b87be3b7e41083f607fa0a54792d153a Fix: bad type of return variable Fix coverity issue 1128442. Signed-off-by: David Goulet --- diff --git a/src/common/compat/compat-epoll.c b/src/common/compat/compat-epoll.c index 1380ce855..25c995504 100644 --- a/src/common/compat/compat-epoll.c +++ b/src/common/compat/compat-epoll.c @@ -250,7 +250,7 @@ error: void compat_epoll_set_max_size(void) { int ret, fd; - size_t size_ret; + ssize_t size_ret; char buf[64]; poll_max_size = DEFAULT_POLL_SIZE;