Module Name: src
Committed By: andvar
Date: Mon Feb 13 23:14:21 UTC 2023
Modified Files:
src/sys/fs/msdosfs: msdosfs_conv.c
Log Message:
s/chacters/characters/ in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/fs/msdosfs/msdosfs_conv.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/fs/msdosfs/msdosfs_conv.c
diff -u src/sys/fs/msdosfs/msdosfs_conv.c:1.18 src/sys/fs/msdosfs/msdosfs_conv.c:1.19
--- src/sys/fs/msdosfs/msdosfs_conv.c:1.18 Sat Oct 23 16:58:17 2021
+++ src/sys/fs/msdosfs/msdosfs_conv.c Mon Feb 13 23:14:21 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: msdosfs_conv.c,v 1.18 2021/10/23 16:58:17 thorpej Exp $ */
+/* $NetBSD: msdosfs_conv.c,v 1.19 2023/02/13 23:14:21 andvar Exp $ */
/*-
* Copyright (C) 1995, 1997 Wolfgang Solfrank.
@@ -58,7 +58,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_conv.c,v 1.18 2021/10/23 16:58:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_conv.c,v 1.19 2023/02/13 23:14:21 andvar Exp $");
/*
* System include files.
@@ -866,7 +866,7 @@ ucs2utf8str(const u_int16_t *in, int n,
/*
* Convert UTF8 string into UCS-2 string
- * return total number of output chacters
+ * return total number of output characters
*/
static int
utf8ucs2str(const u_int8_t *in, int n, u_int16_t *out, int m)
@@ -920,7 +920,7 @@ ucs2char8str(const u_int16_t *in, int n,
/*
* Convert 8bit character string into UCS-2 string
- * return total number of output chacters
+ * return total number of output characters
*/
static int
char8ucs2str(const u_int8_t *in, int n, u_int16_t *out, int m)