Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/sysinst s/changable/changeable/ in comments.



details:   https://anonhg.NetBSD.org/src/rev/3c237d0fe918
branches:  trunk
changeset: 366373:3c237d0fe918
user:      andvar <andvar%NetBSD.org@localhost>
date:      Tue May 24 06:18:34 2022 +0000

description:
s/changable/changeable/ in comments.

diffstat:

 sys/arch/amiga/dev/grfioctl.h |  4 ++--
 sys/arch/atari/dev/grfioctl.h |  4 ++--
 tests/dev/audio/audiotest.c   |  8 ++++----
 usr.sbin/sysinst/partitions.h |  6 +++---
 4 files changed, 11 insertions(+), 11 deletions(-)

diffs (98 lines):

diff -r 7a35aee876df -r 3c237d0fe918 sys/arch/amiga/dev/grfioctl.h
--- a/sys/arch/amiga/dev/grfioctl.h     Tue May 24 02:22:47 2022 +0000
+++ b/sys/arch/amiga/dev/grfioctl.h     Tue May 24 06:18:34 2022 +0000
@@ -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 @@
        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
diff -r 7a35aee876df -r 3c237d0fe918 sys/arch/atari/dev/grfioctl.h
--- a/sys/arch/atari/dev/grfioctl.h     Tue May 24 02:22:47 2022 +0000
+++ b/sys/arch/atari/dev/grfioctl.h     Tue May 24 06:18:34 2022 +0000
@@ -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 @@
        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
diff -r 7a35aee876df -r 3c237d0fe918 tests/dev/audio/audiotest.c
--- a/tests/dev/audio/audiotest.c       Tue May 24 02:22:47 2022 +0000
+++ b/tests/dev/audio/audiotest.c       Tue May 24 06:18:34 2022 +0000
@@ -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 @@
 #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 @@
 }
 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); }
  */
diff -r 7a35aee876df -r 3c237d0fe918 usr.sbin/sysinst/partitions.h
--- a/usr.sbin/sysinst/partitions.h     Tue May 24 02:22:47 2022 +0000
+++ b/usr.sbin/sysinst/partitions.h     Tue May 24 06:18:34 2022 +0000
@@ -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 @@
        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);
        /*



Home | Main Index | Thread Index | Old Index