diff options
author | stwo <stwo> | 2014-09-08 00:37:22 (GMT) |
---|---|---|
committer | stwo <stwo> | 2014-09-08 00:37:22 (GMT) |
commit | aa5429b146778774bfc447513e15c08126877653 (patch) | |
tree | 256fa8ec7db6e86d5bd9cc60c9fc77c3af67271c /unix | |
parent | 496282eb49d6e1f93e445ed27bbdefda520a1dc5 (diff) | |
download | tcl-aa5429b146778774bfc447513e15c08126877653.zip tcl-aa5429b146778774bfc447513e15c08126877653.tar.gz tcl-aa5429b146778774bfc447513e15c08126877653.tar.bz2 |
Change one '#ifdef' to '#if defined()' for improved consistency within the file,
as in checkin [211aa43013].
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixCompat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c index 0fc51b7..3d2b7b8 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -370,7 +370,7 @@ TclpGetGrNam( #else ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey); -#ifdef HAVE_GETGRNAM_R_5 +#if defined(HAVE_GETGRNAM_R_5) struct group *grPtr = NULL; /* |