diff options
author | hypnotoad <yoda@etoyoc.com> | 2017-09-25 16:23:56 (GMT) |
---|---|---|
committer | hypnotoad <yoda@etoyoc.com> | 2017-09-25 16:23:56 (GMT) |
commit | da869353bd4824d69fa3756a5336f08db6b7e997 (patch) | |
tree | fbf974444e657477f32f2d0b74772f8c13dd70ab /generic/tclBasic.c | |
parent | cd7269ab4485bfd59094b17245b3ab9c943c6ff2 (diff) | |
download | tcl-core_zip_vfs.zip tcl-core_zip_vfs.tar.gz tcl-core_zip_vfs.tar.bz2 |
Improvements to Tip#430 based on community input. Added a forward declaration of TclZipfs_Init. Added TclZipfs_Mount() and TclZifs_Unmount to stubs table.core_zip_vfs
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index f798a3d..3e6ad56 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -990,7 +990,7 @@ Tcl_CreateInterp(void) if (TclZlibInit(interp) != TCL_OK) { Tcl_Panic("%s", TclGetString(Tcl_GetObjResult(interp))); } - if (TclZipfsInit(interp) != TCL_OK) { + if (TclZipfs_Init(interp) != TCL_OK) { Tcl_Panic("%s", Tcl_GetString(Tcl_GetObjResult(interp))); } #endif |