remove double/tripple o in comments, where it likely was not added on purpose.

This commit is contained in:
andvar 2023-06-27 19:30:27 +00:00
parent 5462b98306
commit 0aa2b64219
3 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtc.c,v 1.8 2011/07/01 18:48:37 dyoung Exp $ */
/* $NetBSD: rtc.c,v 1.9 2023/06/27 19:30:27 andvar Exp $ */
/*
* Copyright (c) 1992, 1993
@ -56,7 +56,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.8 2011/07/01 18:48:37 dyoung Exp $");
__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.9 2023/06/27 19:30:27 andvar Exp $");
/*
* Clock driver for 'rtc' - mc146818 driver.
@ -185,7 +185,7 @@ rtc_ebus_attach(device_t parent, device_t self, void *aux)
* MD mc146818 RTC todr routines.
*/
/* Loooks like Sun stores the century info somewhere in CMOS RAM */
/* Looks like Sun stores the century info somewhere in CMOS RAM */
#define MC_CENT 0x32
u_int

View File

@ -1,4 +1,4 @@
/* $NetBSD: rumpfs.c,v 1.166 2021/10/20 03:08:18 thorpej Exp $ */
/* $NetBSD: rumpfs.c,v 1.167 2023/06/27 19:30:27 andvar Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Antti Kantee. All Rights Reserved.
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.166 2021/10/20 03:08:18 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.167 2023/06/27 19:30:27 andvar Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@ -1517,7 +1517,7 @@ rump_vop_write(void *v)
uvm_vnp_setsize(vp, newlen);
}
/* ok, we have enough stooorage. write */
/* ok, we have enough storage. write */
while (uio->uio_resid > 0) {
chunk = MIN(uio->uio_resid, (off_t)rn->rn_dlen-uio->uio_offset);
if (chunk == 0)

View File

@ -1,4 +1,4 @@
/* $NetBSD: bdes.c,v 1.10 2016/02/01 17:41:37 christos Exp $ */
/* $NetBSD: bdes.c,v 1.11 2023/06/27 19:30:27 andvar Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\
#if 0
static char sccsid[] = "@(#)bdes.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: bdes.c,v 1.10 2016/02/01 17:41:37 christos Exp $");
__RCSID("$NetBSD: bdes.c,v 1.11 2023/06/27 19:30:27 andvar Exp $");
#endif
#endif /* not lint */
@ -188,7 +188,7 @@ main(int ac, char *av[])
register int i; /* counter in a for loop */
register char *p; /* used to obtain the key */
Desbuf msgbuf; /* I/O buffer */
int kflag; /* command-line encryptiooon key */
int kflag; /* command-line encryption key */
int argc; /* the real arg count */
char **argv; /* the real argument vector */