From 9337b12fa8130dac15517cd1bf5793461d3f64d5 Mon Sep 17 00:00:00 2001 From: uch Date: Sun, 2 Aug 2009 12:04:28 +0000 Subject: [PATCH] fix comment --- sys/arch/ews4800mips/ews4800mips/disksubr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/ews4800mips/ews4800mips/disksubr.c b/sys/arch/ews4800mips/ews4800mips/disksubr.c index dc107caafdf0..43e5e8e8db20 100644 --- a/sys/arch/ews4800mips/ews4800mips/disksubr.c +++ b/sys/arch/ews4800mips/ews4800mips/disksubr.c @@ -1,4 +1,4 @@ -/* $NetBSD: disksubr.c,v 1.7 2008/04/28 20:23:18 martin Exp $ */ +/* $NetBSD: disksubr.c,v 1.8 2009/08/02 12:04:28 uch Exp $ */ /*- * Copyright (c) 2004 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.7 2008/04/28 20:23:18 martin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.8 2009/08/02 12:04:28 uch Exp $"); #include #include @@ -139,7 +139,7 @@ writedisklabel(dev_t dev, void (*strategy)(struct buf *), struct disklabel *d, sector_write(rwops, (void *)&ux->vtoc, ux->pdinfo.logical_sector + VTOC_SECTOR); - /* 3. Write disklabel to BFS */ + /* 3. Write disklabel to LABELSECTOR */ memset(buf, 0, sizeof buf); memcpy(buf, d, sizeof *d); if (!sector_write(rwops, buf, LABELSECTOR)) {