Module Name:    src
Committed By:   dsl
Date:           Sat Dec 12 17:48:54 UTC 2009

Modified Files:
        src/sys/kern: subr_prof.c

Log Message:
Fix comment for arg types of sys_profil().


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/kern/subr_prof.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/subr_prof.c
diff -u src/sys/kern/subr_prof.c:1.43 src/sys/kern/subr_prof.c:1.44
--- src/sys/kern/subr_prof.c:1.43	Thu Dec 20 23:03:10 2007
+++ src/sys/kern/subr_prof.c	Sat Dec 12 17:48:54 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_prof.c,v 1.43 2007/12/20 23:03:10 dsl Exp $	*/
+/*	$NetBSD: subr_prof.c,v 1.44 2009/12/12 17:48:54 dsl Exp $	*/
 
 /*-
  * Copyright (c) 1982, 1986, 1993
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_prof.c,v 1.43 2007/12/20 23:03:10 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_prof.c,v 1.44 2009/12/12 17:48:54 dsl Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -219,8 +219,8 @@
 {
 	/* {
 		syscallarg(char *) samples;
-		syscallarg(u_int) size;
-		syscallarg(u_int) offset;
+		syscallarg(size_t) size;
+		syscallarg(u_long) offset;
 		syscallarg(u_int) scale;
 	} */
 	struct proc *p = l->l_proc;

Reply via email to