summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-11-01 15:47:39 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-11-01 15:47:39 (GMT)
commitec0ae71fe0de4337c0b819b83062f4945b74c3c3 (patch)
tree9ad44a6ac148ca3fc42e5158600120bcf8f17d86
parent2998dff7d6013d8de26a9f995195109ccdfb7fe8 (diff)
downloadtcl-ec0ae71fe0de4337c0b819b83062f4945b74c3c3.zip
tcl-ec0ae71fe0de4337c0b819b83062f4945b74c3c3.tar.gz
tcl-ec0ae71fe0de4337c0b819b83062f4945b74c3c3.tar.bz2
Think-o fixes
-rw-r--r--generic/tclIOUtil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index 78cc0ff..349ed9d 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -17,7 +17,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOUtil.c,v 1.124 2005/11/01 15:30:52 dkf Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.125 2005/11/01 15:47:39 dkf Exp $
*/
#include "tclInt.h"
@@ -2326,7 +2326,7 @@ NativeFileAttrsGet(
Tcl_Obj *pathPtr, /* path of file we are operating on. */
Tcl_Obj **objPtrRef) /* for output. */
{
- return (tclpFileAttrProcs[index]->getProc)(interp, index, pathPtr,
+ return (*tclpFileAttrProcs[index].getProc)(interp, index, pathPtr,
objPtrRef);
}
@@ -2356,7 +2356,7 @@ NativeFileAttrsSet(
Tcl_Obj *pathPtr, /* path of file we are operating on. */
Tcl_Obj *objPtr) /* set to this value. */
{
- return (tclpFileAttrProcs[index]->setProc)(interp, index, pathPtr, objPtr);
+ return (*tclpFileAttrProcs[index].setProc)(interp, index, pathPtr, objPtr);
}
/*