diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-30 10:24:20 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-12-30 10:24:20 (GMT) |
| commit | db5995b2b8c095d4c0d4e9d72df3b5834f9d937d (patch) | |
| tree | 9dd08e96712d0bbeb26b46b3c2ac5d1312d63be7 /unix/tclUnixFile.c | |
| parent | 53baa9e5c45b6b3290a619f6de16071c5921c447 (diff) | |
| parent | 4ad593f2bfa83036baa51ee39064e8c5f1020e5e (diff) | |
| download | tcl-db5995b2b8c095d4c0d4e9d72df3b5834f9d937d.zip tcl-db5995b2b8c095d4c0d4e9d72df3b5834f9d937d.tar.gz tcl-db5995b2b8c095d4c0d4e9d72df3b5834f9d937d.tar.bz2 | |
merge main working branch
Diffstat (limited to 'unix/tclUnixFile.c')
| -rw-r--r-- | unix/tclUnixFile.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c index 38504d9..5bfe5d9 100644 --- a/unix/tclUnixFile.c +++ b/unix/tclUnixFile.c @@ -1181,9 +1181,10 @@ TclpUtime( int TclOSstat( const char *name, - Tcl_StatBuf *statBuf) + void *cygstat) { struct stat buf; + Tcl_StatBuf *statBuf = cygstat; int result = stat(name, &buf); statBuf->st_mode = buf.st_mode; @@ -1203,9 +1204,10 @@ TclOSstat( int TclOSlstat( const char *name, - Tcl_StatBuf *statBuf) + void *cygstat) { struct stat buf; + Tcl_StatBuf *statBuf = cygstat; int result = lstat(name, &buf); statBuf->st_mode = buf.st_mode; |
