Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Jan 2002 01:54:41 +0200
From:      Giorgos Keramidas <keramida@FreeBSD.org>
To:        audit@FreeBSD.org
Subject:   minor sys/sys/errno.h style change?
Message-ID:  <20020121235440.GA644@hades.hell.gr>

next in thread | raw e-mail | index | archive | help
What do you all think of this small change to sys/sys/errno.h ?
ENOTSUP is the only error code that is not indented with a tab after
the #define statement.  All others use a tab.  You can quickly check
this at your copy of errno.h, with `set ts=15' while editing in vi(1).

- Giorgos

Index: errno.h
===================================================================
RCS file: /home/ncvs/src/sys/sys/errno.h,v
retrieving revision 1.17
diff -2 -u -r1.17 errno.h
--- errno.h	27 Aug 2001 17:05:29 -0000	1.17
+++ errno.h	21 Jan 2002 23:47:48 -0000
@@ -109,5 +109,5 @@
 #define	ESOCKTNOSUPPORT	44		/* Socket type not supported */
 #define	EOPNOTSUPP	45		/* Operation not supported */
-#define ENOTSUP		EOPNOTSUPP	/* Operation not supported */
+#define	ENOTSUP		EOPNOTSUPP	/* Operation not supported */
 #define	EPFNOSUPPORT	46		/* Protocol family not supported */
 #define	EAFNOSUPPORT	47		/* Address family not supported by protocol family */

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-audit" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020121235440.GA644>