From 8b0a34508b8801f4703d57d8234cfdfa8ab6c47e Mon Sep 17 00:00:00 2001 From: yamt Date: Mon, 31 Oct 2011 13:23:55 +0000 Subject: [PATCH] replace a non us-ascii character in a comment --- sys/rump/librump/rumpkern/vm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/rump/librump/rumpkern/vm.c b/sys/rump/librump/rumpkern/vm.c index 2789deaa79c7..9912f15a6bf8 100644 --- a/sys/rump/librump/rumpkern/vm.c +++ b/sys/rump/librump/rumpkern/vm.c @@ -1,4 +1,4 @@ -/* $NetBSD: vm.c,v 1.119 2011/09/02 10:18:38 christos Exp $ */ +/* $NetBSD: vm.c,v 1.120 2011/10/31 13:23:55 yamt Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -41,7 +41,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.119 2011/09/02 10:18:38 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: vm.c,v 1.120 2011/10/31 13:23:55 yamt Exp $"); #include #include @@ -97,7 +97,7 @@ static unsigned long dddlim; /* 90% of memory limit used */ /* * Try to free two pages worth of pages from objects. * If this succesfully frees a full page cache page, we'll - * free the released page plus PAGE_SIZEČ/sizeof(vm_page). + * free the released page plus PAGE_SIZE/sizeof(vm_page). */ #define PAGEDAEMON_OBJCHUNK (2*PAGE_SIZE / sizeof(struct vm_page))