diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) | 
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) | 
| commit | c2a4f7e6129491089c0fa4d0202ed91617d29591 (patch) | |
| tree | 38d0791f589c2ab97e01e287a9a2cdc9dd091461 /unix/tclUnixFCmd.c | |
| parent | fa1e0944fbc80713ec2e806311d2aa6bdbbcbffb (diff) | |
| download | tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.zip tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.tar.gz tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.tar.bz2  | |
Style improvements - invoking callbacks without visual junk.
Diffstat (limited to 'unix/tclUnixFCmd.c')
| -rw-r--r-- | unix/tclUnixFCmd.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index 082449a..868e98e 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -10,7 +10,7 @@   * See the file "license.terms" for information on usage and redistribution of   * this file, and for a DISCLAIMER OF ALL WARRANTIES.   * - * RCS: @(#) $Id: tclUnixFCmd.c,v 1.68 2008/10/05 22:25:35 nijtmans Exp $ + * RCS: @(#) $Id: tclUnixFCmd.c,v 1.69 2008/10/26 12:45:04 dkf Exp $   *   * Portions of this code were derived from NetBSD source code which has the   * following copyright notice: @@ -948,7 +948,7 @@ TraverseUnixTree(  	 * Process the regular file  	 */ -	return (*traverseProc)(sourcePtr, targetPtr, &statBuf, DOTREE_F, +	return traverseProc(sourcePtr, targetPtr, &statBuf, DOTREE_F,  		errorPtr);      }  #ifndef HAVE_FTS @@ -961,7 +961,7 @@ TraverseUnixTree(  	errfile = source;  	goto end;      } -    result = (*traverseProc)(sourcePtr, targetPtr, &statBuf, DOTREE_PRED, +    result = traverseProc(sourcePtr, targetPtr, &statBuf, DOTREE_PRED,  	    errorPtr);      if (result != TCL_OK) {  	closedir(dirPtr); @@ -1035,7 +1035,7 @@ TraverseUnixTree(  	 * that directory.  	 */ -	result = (*traverseProc)(sourcePtr, targetPtr, &statBuf, DOTREE_POSTD, +	result = traverseProc(sourcePtr, targetPtr, &statBuf, DOTREE_POSTD,  		errorPtr);      }  #else /* HAVE_FTS */ @@ -1089,7 +1089,7 @@ TraverseUnixTree(  		statBufPtr = (Tcl_StatBuf *) ent->fts_statp;  	    }  	} -	result = (*traverseProc)(sourcePtr, targetPtr, statBufPtr, type, +	result = traverseProc(sourcePtr, targetPtr, statBufPtr, type,  		errorPtr);  	if (result != TCL_OK) {  	    break;  | 
