diff options
author | nijtmans <nijtmans> | 2010-03-11 13:35:23 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-03-11 13:35:23 (GMT) |
commit | ad3425f0ba4af76882183ec4bf7a07034fd77311 (patch) | |
tree | 59bd32315a34884c283ae1a2c1a5b80ce91a2e06 /generic/tclTest.c | |
parent | 2c4e9fc134585c9dbbd25671018e100165ad1b63 (diff) | |
download | tcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.zip tcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.tar.gz tcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.tar.bz2 |
Remove unnecessary '&' decoration for function
pointers.
Fix double declaration of TclNativeDupInternalRep
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r-- | generic/tclTest.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 4e717bd..5aedb14 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclTest.c,v 1.149 2010/03/07 14:39:26 nijtmans Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.150 2010/03/11 13:35:25 nijtmans Exp $ */ #undef STATIC_BUILD @@ -428,41 +428,41 @@ static const Tcl_Filesystem testReportingFilesystem = { "reporting", sizeof(Tcl_Filesystem), TCL_FILESYSTEM_VERSION_1, - &TestReportInFilesystem, /* path in */ - &TestReportDupInternalRep, - &TestReportFreeInternalRep, + TestReportInFilesystem, /* path in */ + TestReportDupInternalRep, + TestReportFreeInternalRep, NULL, /* native to norm */ NULL, /* convert to native */ - &TestReportNormalizePath, + TestReportNormalizePath, NULL, /* path type */ NULL, /* separator */ - &TestReportStat, - &TestReportAccess, - &TestReportOpenFileChannel, - &TestReportMatchInDirectory, - &TestReportUtime, - &TestReportLink, + TestReportStat, + TestReportAccess, + TestReportOpenFileChannel, + TestReportMatchInDirectory, + TestReportUtime, + TestReportLink, NULL /* list volumes */, - &TestReportFileAttrStrings, - &TestReportFileAttrsGet, - &TestReportFileAttrsSet, - &TestReportCreateDirectory, - &TestReportRemoveDirectory, - &TestReportDeleteFile, - &TestReportCopyFile, - &TestReportRenameFile, - &TestReportCopyDirectory, - &TestReportLstat, - &TestReportLoadFile, + TestReportFileAttrStrings, + TestReportFileAttrsGet, + TestReportFileAttrsSet, + TestReportCreateDirectory, + TestReportRemoveDirectory, + TestReportDeleteFile, + TestReportCopyFile, + TestReportRenameFile, + TestReportCopyDirectory, + TestReportLstat, + TestReportLoadFile, NULL /* cwd */, - &TestReportChdir + TestReportChdir }; static const Tcl_Filesystem simpleFilesystem = { "simple", sizeof(Tcl_Filesystem), TCL_FILESYSTEM_VERSION_1, - &SimplePathInFilesystem, + SimplePathInFilesystem, NULL, NULL, /* No internal to normalized, since we don't create any @@ -476,14 +476,14 @@ static const Tcl_Filesystem simpleFilesystem = { NULL, NULL, NULL, - &SimpleStat, - &SimpleAccess, - &SimpleOpenFileChannel, - &SimpleMatchInDirectory, + SimpleStat, + SimpleAccess, + SimpleOpenFileChannel, + SimpleMatchInDirectory, NULL, /* We choose not to support symbolic links inside our vfs's */ NULL, - &SimpleListVolumes, + SimpleListVolumes, NULL, NULL, NULL, |