svn commit: r255490 - head/sys/kern

John Baldwin jhb at FreeBSD.org
Thu Sep 12 17:52:19 UTC 2013


Author: jhb
Date: Thu Sep 12 17:52:18 2013
New Revision: 255490
URL: http://svnweb.freebsd.org/changeset/base/255490

Log:
  Fix the type of the idtype argument to wait6() in syscalls.master.
  
  Approved by:	re (kib)
  MFC after:	1 week

Modified:
  head/sys/kern/syscalls.master

Modified: head/sys/kern/syscalls.master
==============================================================================
--- head/sys/kern/syscalls.master	Thu Sep 12 17:51:18 2013	(r255489)
+++ head/sys/kern/syscalls.master	Thu Sep 12 17:52:18 2013	(r255490)
@@ -952,7 +952,7 @@
 				    off_t offset, off_t len); }
 531	AUE_NULL	STD	{ int posix_fadvise(int fd, off_t offset, \
 				    off_t len, int advice); }
-532	AUE_WAIT6	STD	{ int wait6(int idtype, id_t id, \
+532	AUE_WAIT6	STD	{ int wait6(idtype_t idtype, id_t id, \
 				    int *status, int options, \
 				    struct __wrusage *wrusage, \
 				    siginfo_t *info); }


More information about the svn-src-all mailing list