Source-Changes-HG archive

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

[src/trunk]: src Fix misspelling of acceptible (it's only acceptable with an ...



details:   https://anonhg.NetBSD.org/src/rev/dea43c912025
branches:  trunk
changeset: 783006:dea43c912025
user:      mbalmer <mbalmer%NetBSD.org@localhost>
date:      Sat Dec 01 11:37:26 2012 +0000

description:
Fix misspelling of acceptible (it's only acceptable with an 'a', not an 'i').

diffstat:

 games/rogue/machdep.c          |  6 +++---
 sys/arch/ibmnws/include/pnp.h  |  2 +-
 sys/arch/prep/include/pnp.h    |  2 +-
 sys/dev/pci/n8/n8_memory_bsd.c |  6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diffs (74 lines):

diff -r fbcc4f7efdfc -r dea43c912025 games/rogue/machdep.c
--- a/games/rogue/machdep.c     Sat Dec 01 11:31:01 2012 +0000
+++ b/games/rogue/machdep.c     Sat Dec 01 11:37:26 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.19 2011/09/01 07:18:51 plunky Exp $      */
+/*     $NetBSD: machdep.c,v 1.20 2012/12/01 11:37:27 mbalmer Exp $     */
 
 /*
  * Copyright (c) 1988, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)machdep.c  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: machdep.c,v 1.19 2011/09/01 07:18:51 plunky Exp $");
+__RCSID("$NetBSD: machdep.c,v 1.20 2012/12/01 11:37:27 mbalmer Exp $");
 #endif
 #endif /* not lint */
 
@@ -84,7 +84,7 @@
  *      #endif
  *      }
  *
- * Appropriate variations of this are of course acceptible.
+ * Appropriate variations of this are of course acceptable.
  * The use of "#elseif" is discouraged because of non-portability.
  * If the correct #define doesn't exist, "UNIX_SYSV" in this case, make it up
  * and insert it in the list at the top of the file.  Alter the CFLAGS
diff -r fbcc4f7efdfc -r dea43c912025 sys/arch/ibmnws/include/pnp.h
--- a/sys/arch/ibmnws/include/pnp.h     Sat Dec 01 11:31:01 2012 +0000
+++ b/sys/arch/ibmnws/include/pnp.h     Sat Dec 01 11:37:26 2012 +0000
@@ -542,7 +542,7 @@
     unsigned char Tag;                  /* small tag = 0x30 or 0x31           */
     unsigned char Priority;             /* Optional; if missing then x01; else*/
                                         /*  x00 = best possible               */
-                                        /*  x01 = acceptible                  */
+                                        /*  x01 = acceptable                  */
                                         /*  x02 = sub-optimal but functional  */
     } S6_Pack;
 
diff -r fbcc4f7efdfc -r dea43c912025 sys/arch/prep/include/pnp.h
--- a/sys/arch/prep/include/pnp.h       Sat Dec 01 11:31:01 2012 +0000
+++ b/sys/arch/prep/include/pnp.h       Sat Dec 01 11:37:26 2012 +0000
@@ -567,7 +567,7 @@
     unsigned char Tag;                  /* small tag = 0x30 or 0x31           */
     unsigned char Priority;             /* Optional; if missing then x01; else*/
                                         /*  x00 = best possible               */
-                                        /*  x01 = acceptible                  */
+                                        /*  x01 = acceptable                  */
                                         /*  x02 = sub-optimal but functional  */
     } S6_Pack;
 
diff -r fbcc4f7efdfc -r dea43c912025 sys/dev/pci/n8/n8_memory_bsd.c
--- a/sys/dev/pci/n8/n8_memory_bsd.c    Sat Dec 01 11:31:01 2012 +0000
+++ b/sys/dev/pci/n8/n8_memory_bsd.c    Sat Dec 01 11:37:26 2012 +0000
@@ -61,7 +61,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-static char const n8_id[] = "$Id: n8_memory_bsd.c,v 1.5 2012/10/27 17:18:36 chs Exp $";
+static char const n8_id[] = "$Id: n8_memory_bsd.c,v 1.6 2012/12/01 11:37:27 mbalmer Exp $";
 /*****************************************************************************/
 /** @file n8_memory_bsd.c
  *  @brief NetOctaveMemory Services - FreeBSD-specific support routines.
@@ -280,8 +280,8 @@
 #if 0
        /* Replacement for: */
        m = contigmalloc(size, M_DEVBUF, M_WAITOK,
-                    0,                 /* lower acceptible phys addr   */
-                    0xffffffff,        /* upper acceptible phys addr   */
+                    0,                 /* lower acceptable phys addr   */
+                    0xffffffff,        /* upper acceptable phys addr   */
                     PAGE_SIZE,         /* alignment                    */
                     0);                /* boundary                     */
 #endif



Home | Main Index | Thread Index | Old Index