Module Name:    src
Committed By:   christos
Date:           Thu Mar 29 21:21:04 UTC 2012

Modified Files:
        src/lib/libc/arch/mips/gen: cacheflush.c

Log Message:
nbytes is now size_t


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libc/arch/mips/gen/cacheflush.c

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

Modified files:

Index: src/lib/libc/arch/mips/gen/cacheflush.c
diff -u src/lib/libc/arch/mips/gen/cacheflush.c:1.5 src/lib/libc/arch/mips/gen/cacheflush.c:1.6
--- src/lib/libc/arch/mips/gen/cacheflush.c:1.5	Thu Mar 29 15:26:21 2012
+++ src/lib/libc/arch/mips/gen/cacheflush.c	Thu Mar 29 17:21:04 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: cacheflush.c,v 1.5 2012/03/29 19:26:21 christos Exp $ */
+/* $NetBSD: cacheflush.c,v 1.6 2012/03/29 21:21:04 christos Exp $ */
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
 #include <mips/sysarch.h>
 
 int
-_cacheflush(void *addr, int nbytes, int whichcache)
+_cacheflush(void *addr, size_t nbytes, int whichcache)
 {
 	struct mips_cacheflush_args cfa;
 

Reply via email to