Fix missing return

This resolves Bug 2432

Signed-off-by: François Andriot <francois.andriot@free.fr>
pull/1/head
François Andriot 9 years ago committed by Slávek Banko
parent 16df23bc72
commit f420bad7c2

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