Module Name: src
Committed By: simonb
Date: Tue Dec 28 00:34:30 UTC 2021
Modified Files:
src/sys/arch/i386/stand/lib: biosdisk.c
Log Message:
Fix a tyop.
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/arch/i386/stand/lib/biosdisk.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/arch/i386/stand/lib/biosdisk.c
diff -u src/sys/arch/i386/stand/lib/biosdisk.c:1.55 src/sys/arch/i386/stand/lib/biosdisk.c:1.56
--- src/sys/arch/i386/stand/lib/biosdisk.c:1.55 Sun May 30 05:59:23 2021
+++ src/sys/arch/i386/stand/lib/biosdisk.c Tue Dec 28 00:34:30 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: biosdisk.c,v 1.55 2021/05/30 05:59:23 mlelstv Exp $ */
+/* $NetBSD: biosdisk.c,v 1.56 2021/12/28 00:34:30 simonb Exp $ */
/*
* Copyright (c) 1996, 1998
@@ -1045,7 +1045,7 @@ biosdisk_findpartition(int biosdev, dadd
printf("looking for partition device %x, sector %"PRId64"\n", biosdev, sector);
#endif
- /* default ot first partition */
+ /* default to first partition */
*partition = 0;
*part_name = NULL;