svn commit: r184203 - head/lib/libc/gen

Roman Divacky rdivacky at FreeBSD.org
Thu Oct 23 15:32:06 UTC 2008


Author: rdivacky
Date: Thu Oct 23 15:32:06 2008
New Revision: 184203
URL: http://svn.freebsd.org/changeset/base/184203

Log:
  Fix a typo.
  
  Approved by:	kib (mentor)

Modified:
  head/lib/libc/gen/posix_spawn.c

Modified: head/lib/libc/gen/posix_spawn.c
==============================================================================
--- head/lib/libc/gen/posix_spawn.c	Thu Oct 23 13:24:58 2008	(r184202)
+++ head/lib/libc/gen/posix_spawn.c	Thu Oct 23 15:32:06 2008	(r184203)
@@ -444,7 +444,7 @@ posix_spawnattr_setpgroup(posix_spawnatt
 }
 
 int
-posix_spawnattr_setschedparam(posix_spawnattr_t *sa __restrict,
+posix_spawnattr_setschedparam(posix_spawnattr_t * __restrict sa,
     const struct sched_param * __restrict schedparam)
 {
 	(*sa)->sa_schedparam = *schedparam;


More information about the svn-src-head mailing list