From ff63d3d4d6e090a32d40c5d13d03a4fe654ab6b9 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Sat, 23 Apr 2011 14:13:59 +0200
Subject: [PATCH 335/396] mips/pread_write.c: fix typo

Reported-by: Tony Wu <tung7970@gmail.com>
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
---
 libc/sysdeps/linux/mips/pread_write.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libc/sysdeps/linux/mips/pread_write.c b/libc/sysdeps/linux/mips/pread_write.c
index 4e1210f..1174c99 100644
--- a/libc/sysdeps/linux/mips/pread_write.c
+++ b/libc/sysdeps/linux/mips/pread_write.c
@@ -26,9 +26,9 @@ static _syscall4(ssize_t, __syscall_pread, int, fd, void *, buf, size_t, count,
 #  define __NR___syscall_pread __NR_pread
 static _syscall6(ssize_t, __syscall_pread, int, fd, void *, buf,
 		 size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo)
-#  define MY_PREAD(fd, buf, count, offset)
+#  define MY_PREAD(fd, buf, count, offset) \
 	__syscall_pread(fd, buf, count, 0, OFF_HI_LO(offset))
-#  define MY_PREAD64(fd, buf, count, offset)
+#  define MY_PREAD64(fd, buf, count, offset) \
 	__syscall_pread(fd, buf, count, 0, OFF64_HI_LO(offset))
 # endif
 #endif
@@ -49,9 +49,9 @@ static _syscall4(ssize_t, __syscall_pwrite, int, fd, const void *, buf, size_t,
 #  define __NR___syscall_pwrite __NR_pwrite
 static _syscall6(ssize_t, __syscall_pwrite, int, fd, const void *, buf,
 		 size_t, count, int, dummy, off_t, offset_hi, off_t, offset_lo)
-#  define MY_PWRITE(fd, buf, count, offset)
+#  define MY_PWRITE(fd, buf, count, offset) \
 	__syscall_pwrite(fd, buf, count, 0, OFF_HI_LO(offset))
-#  define MY_PWRITE64(fd, buf, count, offset)
+#  define MY_PWRITE64(fd, buf, count, offset) \
 	__syscall_pwrite(fd, buf, count, 0, OFF64_HI_LO(offset))
 # endif
 #endif
-- 
1.7.0.4

