Module Name: src Committed By: andvar Date: Tue May 24 06:18:34 UTC 2022
Modified Files: src/sys/arch/amiga/dev: grfioctl.h src/sys/arch/atari/dev: grfioctl.h src/tests/dev/audio: audiotest.c src/usr.sbin/sysinst: partitions.h Log Message: s/changable/changeable/ in comments. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/arch/amiga/dev/grfioctl.h cvs rdiff -u -r1.11 -r1.12 src/sys/arch/atari/dev/grfioctl.h cvs rdiff -u -r1.20 -r1.21 src/tests/dev/audio/audiotest.c cvs rdiff -u -r1.26 -r1.27 src/usr.sbin/sysinst/partitions.h 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/amiga/dev/grfioctl.h diff -u src/sys/arch/amiga/dev/grfioctl.h:1.22 src/sys/arch/amiga/dev/grfioctl.h:1.23 --- src/sys/arch/amiga/dev/grfioctl.h:1.22 Mon Nov 1 21:28:02 2021 +++ src/sys/arch/amiga/dev/grfioctl.h Tue May 24 06:18:34 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: grfioctl.h,v 1.22 2021/11/01 21:28:02 andvar Exp $ */ +/* $NetBSD: grfioctl.h,v 1.23 2022/05/24 06:18:34 andvar Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -62,7 +62,7 @@ struct grfinfo { int gd_fbwidth; /* frame buffer width */ int gd_fbheight; /* frame buffer height */ - struct grfdyninfo gd_dyn; /* everything changable by GRFIOCSINFO */ + struct grfdyninfo gd_dyn; /* everything changeable by GRFIOCSINFO */ /* compatibility... */ #define gd_fbx gd_dyn.gdi_fbx #define gd_fby gd_dyn.gdi_fby Index: src/sys/arch/atari/dev/grfioctl.h diff -u src/sys/arch/atari/dev/grfioctl.h:1.11 src/sys/arch/atari/dev/grfioctl.h:1.12 --- src/sys/arch/atari/dev/grfioctl.h:1.11 Mon Nov 1 21:28:02 2021 +++ src/sys/arch/atari/dev/grfioctl.h Tue May 24 06:18:34 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: grfioctl.h,v 1.11 2021/11/01 21:28:02 andvar Exp $ */ +/* $NetBSD: grfioctl.h,v 1.12 2022/05/24 06:18:34 andvar Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -69,7 +69,7 @@ struct grfinfo { int gd_fbwidth; /* frame buffer width */ int gd_fbheight; /* frame buffer height */ - struct grfdyninfo gd_dyn; /* everything changable by GRFIOCSINFO */ + struct grfdyninfo gd_dyn; /* everything changeable by GRFIOCSINFO */ /* compatibility... */ #define gd_fbx gd_dyn.gdi_fbx #define gd_fby gd_dyn.gdi_fby Index: src/tests/dev/audio/audiotest.c diff -u src/tests/dev/audio/audiotest.c:1.20 src/tests/dev/audio/audiotest.c:1.21 --- src/tests/dev/audio/audiotest.c:1.20 Tue May 17 05:05:20 2022 +++ src/tests/dev/audio/audiotest.c Tue May 24 06:18:34 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: audiotest.c,v 1.20 2022/05/17 05:05:20 andvar Exp $ */ +/* $NetBSD: audiotest.c,v 1.21 2022/05/24 06:18:34 andvar Exp $ */ /* * Copyright (C) 2019 Tetsuya Isaki. All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: audiotest.c,v 1.20 2022/05/17 05:05:20 andvar Exp $"); +__RCSID("$NetBSD: audiotest.c,v 1.21 2022/05/24 06:18:34 andvar Exp $"); #include <errno.h> #include <fcntl.h> @@ -5083,7 +5083,7 @@ test_AUDIO_SETINFO_params_set(int openmo #define f(a,b,c) test_AUDIO_SETINFO_params_set(a, b, c) DEF(AUDIO_SETINFO_params_set_RDONLY_0) { f(O_RDONLY, 0, 0); } DEF(AUDIO_SETINFO_params_set_RDONLY_1) { f(O_RDONLY, 0, 1); } -/* On RDONLY, ai.mode is not changable +/* On RDONLY, ai.mode is not changeable * AUDIO_SETINFO_params_set_RDONLY_2) { f(O_RDONLY, 1, 0); } * AUDIO_SETINFO_params_set_RDONLY_3) { f(O_RDONLY, 1, 1); } */ @@ -5479,7 +5479,7 @@ test_AUDIO_SETINFO_pause(int openmode, i } DEF(AUDIO_SETINFO_pause_RDONLY_0) { test_AUDIO_SETINFO_pause(O_RDONLY, 0, 0); } DEF(AUDIO_SETINFO_pause_RDONLY_1) { test_AUDIO_SETINFO_pause(O_RDONLY, 0, 1); } -/* On RDONLY, ai.mode is not changable +/* On RDONLY, ai.mode is not changeable * AUDIO_SETINFO_pause_RDONLY_2) { test_AUDIO_SETINFO_pause(O_RDONLY, 1, 0); } * AUDIO_SETINFO_pause_RDONLY_3) { test_AUDIO_SETINFO_pause(O_RDONLY, 1, 1); } */ Index: src/usr.sbin/sysinst/partitions.h diff -u src/usr.sbin/sysinst/partitions.h:1.26 src/usr.sbin/sysinst/partitions.h:1.27 --- src/usr.sbin/sysinst/partitions.h:1.26 Sun May 22 11:27:37 2022 +++ src/usr.sbin/sysinst/partitions.h Tue May 24 06:18:34 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: partitions.h,v 1.26 2022/05/22 11:27:37 andvar Exp $ */ +/* $NetBSD: partitions.h,v 1.27 2022/05/24 06:18:34 andvar Exp $ */ /* * Copyright (c) 2020 The NetBSD Foundation, Inc. @@ -303,14 +303,14 @@ struct disk_partitioning_scheme { bool (*format_partition_table_str)(const struct disk_partitions*, part_id, size_t col, char *outstr, size_t outspace); - /* is the type of this partition changable? */ + /* is the type of this partition changeable? */ bool (*part_type_can_change)(const struct disk_partitions*, part_id); /* can we add further partitions? */ bool (*can_add_partition)(const struct disk_partitions*); - /* is the custom attribut changable? */ + /* is the custom attribute changeable? */ bool (*custom_attribute_writable)(const struct disk_partitions*, part_id, size_t attr_no); /*