Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Sep 2013 17:52:18 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r255490 - head/sys/kern
Message-ID:  <201309121752.r8CHqIZO097943@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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); }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309121752.r8CHqIZO097943>