Module Name:    src
Committed By:   wiz
Date:           Tue Jun 27 08:09:14 UTC 2017

Modified Files:
        src/sys/dev: devlist2h.awk

Log Message:
Add verb to sentence.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/devlist2h.awk

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

Modified files:

Index: src/sys/dev/devlist2h.awk
diff -u src/sys/dev/devlist2h.awk:1.2 src/sys/dev/devlist2h.awk:1.3
--- src/sys/dev/devlist2h.awk:1.2	Wed Oct 26 01:03:23 2016
+++ src/sys/dev/devlist2h.awk	Tue Jun 27 08:09:14 2017
@@ -1,5 +1,5 @@
 #! /usr/bin/awk -f
-#	$NetBSD: devlist2h.awk,v 1.2 2016/10/26 01:03:23 pgoyette Exp $
+#	$NetBSD: devlist2h.awk,v 1.3 2017/06/27 08:09:14 wiz Exp $
 #
 # Copyright (c) 1995, 1996 Christopher G. Demetriou
 # All rights reserved.
@@ -44,7 +44,7 @@ NR == 1 {
 
 	printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
 	printf("/*\n") > dfile
-	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
+	printf(" * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
 	    > dfile
 	printf(" *\n") > dfile
 	printf(" * generated from:\n") > dfile
@@ -53,7 +53,7 @@ NR == 1 {
 
 	printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
 	printf("/*\n") > hfile
-	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
+	printf(" * THIS FILE IS AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
 	    > hfile
 	printf(" *\n") > hfile
 	printf(" * generated from:\n") > hfile

Reply via email to