diff options
author | stwo <stwo> | 2014-09-08 00:37:22 (GMT) |
---|---|---|
committer | stwo <stwo> | 2014-09-08 00:37:22 (GMT) |
commit | 976c48a7f14df997ad05c82dae867c8622236e70 (patch) | |
tree | 256fa8ec7db6e86d5bd9cc60c9fc77c3af67271c /unix | |
parent | 6d02d4e9dc3e8e56e9dbc4d1199a7f0abd8ad859 (diff) | |
download | tcl-976c48a7f14df997ad05c82dae867c8622236e70.zip tcl-976c48a7f14df997ad05c82dae867c8622236e70.tar.gz tcl-976c48a7f14df997ad05c82dae867c8622236e70.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; /* |