Module Name:    src
Committed By:   kre
Date:           Wed Mar  7 21:13:24 UTC 2018

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

Log Message:
Fix typo in comment (s/is/if/) - NFC.


To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/sys/kern/subr_disk.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_disk.c
diff -u src/sys/kern/subr_disk.c:1.121 src/sys/kern/subr_disk.c:1.122
--- src/sys/kern/subr_disk.c:1.121	Fri Oct 27 12:25:15 2017
+++ src/sys/kern/subr_disk.c	Wed Mar  7 21:13:24 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_disk.c,v 1.121 2017/10/27 12:25:15 joerg Exp $	*/
+/*	$NetBSD: subr_disk.c,v 1.122 2018/03/07 21:13:24 kre Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1999, 2000, 2009 The NetBSD Foundation, Inc.
@@ -67,7 +67,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_disk.c,v 1.121 2017/10/27 12:25:15 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_disk.c,v 1.122 2018/03/07 21:13:24 kre Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -130,7 +130,7 @@ diskerr(const struct buf *bp, const char
 	daddr_t sn;
 
 	if (/*CONSTCOND*/0)
-		/* Compiler will error this is the format is wrong... */
+		/* Compiler will error this if the format is wrong... */
 		printf("%" PRIdaddr, bp->b_blkno);
 
 	if (pri != LOG_PRINTF) {

Reply via email to