Module Name: src
Committed By: christos
Date: Fri Mar 8 16:50:03 UTC 2013
Modified Files:
src/share/misc: style
Log Message:
PR/47632: Supratim Chakraborty: Spelling Mistake for Variadic functions
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/share/misc/style
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/misc/style
diff -u src/share/misc/style:1.50 src/share/misc/style:1.51
--- src/share/misc/style:1.50 Wed Jun 27 18:04:02 2012
+++ src/share/misc/style Fri Mar 8 11:50:02 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: style,v 1.50 2012/06/27 22:04:02 riastradh Exp $ */
+/* $NetBSD: style,v 1.51 2013/03/08 16:50:02 christos Exp $ */
/*
* The revision control tag appears first, with a blank line after it.
@@ -30,7 +30,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2008\
The NetBSD Foundation, inc. All rights reserved.");
-__RCSID("$NetBSD: style,v 1.50 2012/06/27 22:04:02 riastradh Exp $");
+__RCSID("$NetBSD: style,v 1.51 2013/03/08 16:50:02 christos Exp $");
/*
* VERY important single-line comments look like this.
@@ -359,7 +359,7 @@ function(int a1, int a2, float fl, int a
* not:
* !(p = f())
*
- * The notable exception here is varyadic functions. Since our
+ * The notable exception here is variadic functions. Since our
* code is designed to compile and work on different environments
* where we don't have control over the NULL definition (on NetBSD
* it is defined as ((void *)0), but on other systems it can be