Module Name: src
Committed By: njoly
Date: Sun May 31 10:49:28 UTC 2015
Modified Files:
src/sys/compat/linux/arch/amd64: syscalls.master
Log Message:
Fix write(2) size argument (int -> size_t).
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/compat/linux/arch/amd64/syscalls.master
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/linux/arch/amd64/syscalls.master
diff -u src/sys/compat/linux/arch/amd64/syscalls.master:1.54 src/sys/compat/linux/arch/amd64/syscalls.master:1.55
--- src/sys/compat/linux/arch/amd64/syscalls.master:1.54 Sat Mar 7 03:25:19 2015
+++ src/sys/compat/linux/arch/amd64/syscalls.master Sun May 31 10:49:27 2015
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.54 2015/03/07 03:25:19 christos Exp $
+ $NetBSD: syscalls.master,v 1.55 2015/05/31 10:49:27 njoly Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@@ -66,7 +66,7 @@
0 NOARGS { ssize_t|sys||read(int fd, void *buf, size_t nbyte); }
1 NOARGS { ssize_t|sys||write(int fd, const void *buf, \
- int nbyte); }
+ size_t nbyte); }
2 STD { int|linux_sys||open(const char *path, int flags, \
linux_umode_t mode); }
3 NOARGS { int|sys||close(int fd); }