]> arthur.barton.de Git - netatalk.git/commitdiff
Fix typo
authorFrank Lahm <franklahm@googlemail.com>
Mon, 5 Dec 2011 13:28:38 +0000 (14:28 +0100)
committerFrank Lahm <franklahm@googlemail.com>
Mon, 5 Dec 2011 13:28:38 +0000 (14:28 +0100)
libatalk/adouble/ad_sendfile.c

index c8cba8cca31f3ea96a6d228b9e238c07d9f0c170..aabb61ce106eff5f80e69d09ab06149facbfdb51 100644 (file)
@@ -64,7 +64,7 @@ ssize_t sys_sendfile(int tofd, int fromfd, off_t *offset, size_t count)
 #elif defined(SENDFILE_FLAVOR_BSD )
 #include <sys/types.h>
 #include <sys/socket.h>
-#include <sys/uio.h><
+#include <sys/uio.h>
 ssize_t sys_sendfile(int tofd, int fromfd, off_t *offset, size_t count)
 {
   return sendfile(fromfd, tofd, *offset, count, NULL, offset, 0);