diff options
Diffstat (limited to 'generic/tclZipfs.c')
-rw-r--r-- | generic/tclZipfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclZipfs.c b/generic/tclZipfs.c index b1a8a92..e0d08a7 100644 --- a/generic/tclZipfs.c +++ b/generic/tclZipfs.c @@ -4494,9 +4494,6 @@ ZipFSFileAttrStringsProc( Tcl_Obj *pathPtr, Tcl_Obj **objPtrRef) { - (void)pathPtr; - (void)objPtrRef; - static const char *const attrs[] = { "-uncompsize", "-compsize", @@ -4506,6 +4503,9 @@ ZipFSFileAttrStringsProc( "-permissions", NULL, }; + (void)pathPtr; + (void)objPtrRef; + return attrs; } |