diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2024-06-04 15:54:35 (GMT) |
| commit | ca3ac898ea7724652c49e3cb7f57fcf974b22a16 (patch) | |
| tree | b5c98217485282023c93ab5b46c2cfde0af5ddc5 /generic/tclZipfs.c | |
| parent | cd72d108bf14caa354d011a2ce41426ea011da2a (diff) | |
| download | tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.zip tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.gz tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.bz2 | |
Make function definitions have right argument style
Diffstat (limited to 'generic/tclZipfs.c')
| -rw-r--r-- | generic/tclZipfs.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/generic/tclZipfs.c b/generic/tclZipfs.c index b41126e..4fef38c 100644 --- a/generic/tclZipfs.c +++ b/generic/tclZipfs.c @@ -875,7 +875,7 @@ static char * DecodeZipEntryText( const unsigned char *inputBytes, unsigned int inputLength, - Tcl_DString *dstPtr) /* Must have been initialized by caller! */ + Tcl_DString *dstPtr) /* Must have been initialized by caller! */ { Tcl_Encoding encoding; const char *src; @@ -980,9 +980,10 @@ DecodeZipEntryText( *------------------------------------------------------------------------ */ static int -NormalizeMountPoint(Tcl_Interp *interp, - const char *mountPath, - Tcl_DString *dsPtr) /* Must be initialized by caller! */ +NormalizeMountPoint( + Tcl_Interp *interp, + const char *mountPath, + Tcl_DString *dsPtr) /* Must be initialized by caller! */ { const char *joiner[2]; char *joinedPath; @@ -2230,7 +2231,8 @@ ListMountPoints( *------------------------------------------------------------------------ */ static void -CleanupMount(ZipFile *zf) /* Mount point */ +CleanupMount( + ZipFile *zf) /* Mount point */ { ZipEntry *z, *znext; Tcl_HashEntry *hPtr; |
