Module Name:    src
Committed By:   christos
Date:           Fri Feb  4 23:31:23 UTC 2011

Modified Files:
        src/usr.bin/xlint/lint1: tree.c

Log Message:
fix typo


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/usr.bin/xlint/lint1/tree.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/xlint/lint1/tree.c
diff -u src/usr.bin/xlint/lint1/tree.c:1.66 src/usr.bin/xlint/lint1/tree.c:1.67
--- src/usr.bin/xlint/lint1/tree.c:1.66	Sat Dec 18 15:57:41 2010
+++ src/usr.bin/xlint/lint1/tree.c	Fri Feb  4 18:31:23 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: tree.c,v 1.66 2010/12/18 20:57:41 christos Exp $	*/
+/*	$NetBSD: tree.c,v 1.67 2011/02/04 23:31:23 christos Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__RCSID) && !defined(lint)
-__RCSID("$NetBSD: tree.c,v 1.66 2010/12/18 20:57:41 christos Exp $");
+__RCSID("$NetBSD: tree.c,v 1.67 2011/02/04 23:31:23 christos Exp $");
 #endif
 
 #include <stdlib.h>
@@ -1139,7 +1139,7 @@
 		goto assign;
 	case SHRASS:
 		if (pflag && !isutyp(lt) && !(tflag && isutyp(rt))) {
-			/* bitwise operation on s.v. possibly nonportabel */
+			/* bitwise operation on s.v. possibly nonportable */
 			warning(117);
 		}
 		goto assign;

Reply via email to