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 | 514638fd758486513ea7eb842bb8972fd854ca06 (patch) | |
tree | b5c98217485282023c93ab5b46c2cfde0af5ddc5 /generic/tclZipfs.c | |
parent | 14e9a4e0bda3c86ac11baf3c11f900a5837ea70a (diff) | |
download | tcl-514638fd758486513ea7eb842bb8972fd854ca06.zip tcl-514638fd758486513ea7eb842bb8972fd854ca06.tar.gz tcl-514638fd758486513ea7eb842bb8972fd854ca06.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; |