diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-06 03:38:48 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-06 03:38:48 (GMT) |
commit | 50844eb7a3dc041ddfb5619634cab4a3558a3268 (patch) | |
tree | 169d77f82281dcaf45c529494c896e067ecb5e4f /win/tclWinPort.h | |
parent | 44a9da20a5189a749f20f3515bacfb621b241bce (diff) | |
download | tcl-50844eb7a3dc041ddfb5619634cab4a3558a3268.zip tcl-50844eb7a3dc041ddfb5619634cab4a3558a3268.tar.gz tcl-50844eb7a3dc041ddfb5619634cab4a3558a3268.tar.bz2 |
changed EDQUOT #define from 49 to 69. Borland had a clash as it
was already using this number. Upon advice from Helmut Giese, EDQUOT
has been found in other header files #defined as 69.
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r-- | win/tclWinPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 07e510f..04f6796 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -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: tclWinPort.h,v 1.20 2001/09/06 03:29:21 davygrvy Exp $ + * RCS: @(#) $Id: tclWinPort.h,v 1.21 2001/09/06 03:38:48 davygrvy Exp $ */ #ifndef _TCLWINPORT @@ -190,7 +190,7 @@ #define EUSERS 94 /* Too many users (for UFS) */ #endif #ifndef EDQUOT -#define EDQUOT 49 /* Disc quota exceeded */ +#define EDQUOT 69 /* Disc quota exceeded */ #endif #ifndef ESTALE #define ESTALE 151 /* Stale NFS file handle */ |