From b871611cc36eaaf740a5c8f476cf53fe40299eb3 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Tue, 13 Mar 2012 15:27:02 +0100 Subject: 'timeout' parameter in xs_poll changed to int Originally, the parameter was of type long which is incompatible with POSIX poll() function. Signed-off-by: Martin Sustrik --- src/xs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xs.cpp') diff --git a/src/xs.cpp b/src/xs.cpp index 36d40da..7f4cdd2 100644 --- a/src/xs.cpp +++ b/src/xs.cpp @@ -347,7 +347,7 @@ int xs_getmsgopt (xs_msg_t *msg_, int option_, void *optval_, } } -int xs_poll (xs_pollitem_t *items_, int nitems_, long timeout_) +int xs_poll (xs_pollitem_t *items_, int nitems_, int timeout_) { return xs::upoll (items_, nitems_, timeout_); } -- cgit v1.2.3