diff options
| author | stwo@users.sourceforge.net <stwo> | 2012-08-08 23:07:27 (GMT) |
|---|---|---|
| committer | stwo@users.sourceforge.net <stwo> | 2012-08-08 23:07:27 (GMT) |
| commit | 537cc1fce08733ed598220f22c41c79b53a6ce43 (patch) | |
| tree | b24768e85d2b1d7c1d27928e28cbcdf052fe27eb /unix/tclUnixCompat.c | |
| parent | bc8263307e4cfa4064e128e4674e08e1a2f8000d (diff) | |
| download | tcl-537cc1fce08733ed598220f22c41c79b53a6ce43.zip tcl-537cc1fce08733ed598220f22c41c79b53a6ce43.tar.gz tcl-537cc1fce08733ed598220f22c41c79b53a6ce43.tar.bz2 | |
Change one '#ifdef' to '#if defined()' for improved consistency within the file.
Diffstat (limited to 'unix/tclUnixCompat.c')
| -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 3818121..359e253 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -364,7 +364,7 @@ TclpGetGrNam( #else ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey); -#ifdef HAVE_GETGRNAM_R_5 +#if defined(HAVE_GETGRNAM_R_5) struct group *grPtr = NULL; /* |
