diff options
author | hobbs <hobbs@noemail.net> | 2005-05-11 00:53:51 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2005-05-11 00:53:51 (GMT) |
commit | 253faf68c0f996d34ec44ae196c7b830a83a4bd9 (patch) | |
tree | b653a8c123a01b2e4100272decc92b72a6f3f059 /unix/tclUnixFCmd.c | |
parent | 22eba749c78f93b904fe87f967d5353c14e1157c (diff) | |
download | tcl-253faf68c0f996d34ec44ae196c7b830a83a4bd9.zip tcl-253faf68c0f996d34ec44ae196c7b830a83a4bd9.tar.gz tcl-253faf68c0f996d34ec44ae196c7b830a83a4bd9.tar.bz2 |
* unix/tclUnixFCmd.c: add lint attr to enum to satisfy strictly
compliant compilers that don't like trailing ,s.
FossilOrigin-Name: 03b9a47d8d539a6179a8c6037859de14120a0281
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r-- | unix/tclUnixFCmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index e9efbfd..cc910d1 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixFCmd.c,v 1.42 2005/05/10 18:35:27 kennykb Exp $ + * RCS: @(#) $Id: tclUnixFCmd.c,v 1.43 2005/05/11 00:53:51 hobbs Exp $ * * Portions of this code were derived from NetBSD source code which has * the following copyright notice: @@ -135,6 +135,7 @@ enum { MACOSX_HIDDEN_ATTRIBUTE, MACOSX_RSRCLENGTH_ATTRIBUTE, #endif + UNIX_INVALID_ATTRIBUTE /* lint - last enum value needs no trailing , */ }; CONST char *tclpFileAttrStrings[] = { |