summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2005-11-29 19:38:10 +0000
committerChad Loder <cloder@cvs.openbsd.org>2005-11-29 19:38:10 +0000
commit2820aee78fe5646afc680626f831bd3d91ad2b37 (patch)
treecfd708265be5265a937945615a42f6ae7f04949a
parentf7d2f30f2f00b4e44b9052d09a18808a04b6445c (diff)
Typos in comments: explizit and implizit
-rw-r--r--usr.bin/xlint/lint1/emit1.c6
-rw-r--r--usr.bin/xlint/lint1/func.c8
-rw-r--r--usr.bin/xlint/lint1/lint1.h6
-rw-r--r--usr.bin/xlint/lint1/main1.c6
4 files changed, 13 insertions, 13 deletions
diff --git a/usr.bin/xlint/lint1/emit1.c b/usr.bin/xlint/lint1/emit1.c
index 12e3907dc29..4aef279db84 100644
--- a/usr.bin/xlint/lint1/emit1.c
+++ b/usr.bin/xlint/lint1/emit1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: emit1.c,v 1.5 2005/11/19 03:35:27 cloder Exp $ */
+/* $OpenBSD: emit1.c,v 1.6 2005/11/29 19:38:09 cloder Exp $ */
/* $NetBSD: emit1.c,v 1.4 1995/10/02 17:21:28 jpo Exp $ */
/*
@@ -33,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: emit1.c,v 1.5 2005/11/19 03:35:27 cloder Exp $";
+static char rcsid[] = "$OpenBSD: emit1.c,v 1.6 2005/11/29 19:38:09 cloder Exp $";
#endif
#include <ctype.h>
@@ -406,7 +406,7 @@ outcall(tnode_t *tn, int rvused, int rvdisc)
if (isityp(t = arg->tn_type->t_tspec)) {
/*
* XXX it would probably be better to
- * explizitly test the sign
+ * explicitly test the sign
*/
if ((q = arg->tn_val->v_quad) == 0) {
/* zero constant */
diff --git a/usr.bin/xlint/lint1/func.c b/usr.bin/xlint/lint1/func.c
index 8379dca5f9b..8d406ea9696 100644
--- a/usr.bin/xlint/lint1/func.c
+++ b/usr.bin/xlint/lint1/func.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: func.c,v 1.7 2005/11/29 03:40:56 cloder Exp $ */
+/* $OpenBSD: func.c,v 1.8 2005/11/29 19:38:09 cloder Exp $ */
/* $NetBSD: func.c,v 1.7 1995/10/02 17:31:40 jpo Exp $ */
/*
@@ -33,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: func.c,v 1.7 2005/11/29 03:40:56 cloder Exp $";
+static char rcsid[] = "$OpenBSD: func.c,v 1.8 2005/11/29 19:38:09 cloder Exp $";
#endif
#include <stdlib.h>
@@ -340,7 +340,7 @@ funcdef(sym_t *fsym)
}
if (dcs->d_notyp)
- /* return value is implizitly declared to be int */
+ /* return value is implicitly declared to be int */
fsym->s_rimpl = 1;
reached = 1;
@@ -365,7 +365,7 @@ funcend(void)
}
/*
- * This warning is printed only if the return value was implizitly
+ * This warning is printed only if the return value was implicitly
* declared to be int. Otherwise the wrong return statement
* has already printed a warning.
*/
diff --git a/usr.bin/xlint/lint1/lint1.h b/usr.bin/xlint/lint1/lint1.h
index c57a75a6f08..2417d2feaf2 100644
--- a/usr.bin/xlint/lint1/lint1.h
+++ b/usr.bin/xlint/lint1/lint1.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lint1.h,v 1.4 2005/11/23 18:47:41 cloder Exp $ */
+/* $OpenBSD: lint1.h,v 1.5 2005/11/29 19:38:09 cloder Exp $ */
/* $NetBSD: lint1.h,v 1.6 1995/10/02 17:31:41 jpo Exp $ */
/*
@@ -204,7 +204,7 @@ typedef struct sym {
u_int s_reg : 1; /* symbol is register variable */
u_int s_defarg : 1; /* undefined symbol in old style function
definition */
- u_int s_rimpl : 1; /* return value of function implizit decl. */
+ u_int s_rimpl : 1; /* return value of function implicit decl. */
u_int s_osdef : 1; /* symbol stems from old style function def. */
u_int s_inline : 1; /* true if this is a inline function */
struct sym *s_xsym; /* for local declared external symbols pointer
@@ -256,7 +256,7 @@ typedef struct tnode {
op_t tn_op; /* operator */
type_t *tn_type; /* type */
u_int tn_lvalue : 1; /* node is lvalue */
- u_int tn_cast : 1; /* if tn_op == CVT its an explizit cast */
+ u_int tn_cast : 1; /* if tn_op == CVT its an explicit cast */
u_int tn_parn : 1; /* node parenthesized */
union {
struct {
diff --git a/usr.bin/xlint/lint1/main1.c b/usr.bin/xlint/lint1/main1.c
index 163f11ea19d..73eb3eaef67 100644
--- a/usr.bin/xlint/lint1/main1.c
+++ b/usr.bin/xlint/lint1/main1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main1.c,v 1.6 2005/11/23 18:21:43 deraadt Exp $ */
+/* $OpenBSD: main1.c,v 1.7 2005/11/29 19:38:09 cloder Exp $ */
/* $NetBSD: main1.c,v 1.3 1995/10/02 17:29:56 jpo Exp $ */
/*
@@ -33,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: main1.c,v 1.6 2005/11/23 18:21:43 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: main1.c,v 1.7 2005/11/29 19:38:09 cloder Exp $";
#endif
#include <stdio.h>
@@ -48,7 +48,7 @@ int yflag;
/*
* Print warnings if an assignment of an integertype to another integertype
- * causes an implizit narrowing conversion. If aflag is 1, these warnings
+ * causes an implicit narrowing conversion. If aflag is 1, these warnings
* are printed only if the source type is at least as wide as long. If aflag
* is greather then 1, they are always printed.
*/