Fix missing return

This resolves Bug 2432

Signed-off-by: François Andriot <francois.andriot@free.fr>
(cherry picked from commit f420bad7c2)
r14.0.x
François Andriot 9 years ago committed by Slávek Banko
parent bf0a318aca
commit c3355c0141

@ -21,7 +21,7 @@
#include <kurl.h>
extern "C" {
#include <unistd.h>
inline ssize_t mycread (int __fd, void *__buf, size_t __nbytes) { read(__fd, __buf, __nbytes); }
inline ssize_t mycread (int __fd, void *__buf, size_t __nbytes) { return read(__fd, __buf, __nbytes); }
};
#include <sys/socket.h>
#include <netinet/in.h>

Loading…
Cancel
Save