diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-07-31 21:23:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-07-31 21:23:45 (GMT) |
commit | 039b5c21864604ac410777f49e11d9a11b255d06 (patch) | |
tree | 179b6077154684ce233c6e81ea51fecfb506cf73 | |
parent | 1666ae35d8a1d7fd4183adbcca775f541b8596eb (diff) | |
download | tcl-039b5c21864604ac410777f49e11d9a11b255d06.zip tcl-039b5c21864604ac410777f49e11d9a11b255d06.tar.gz tcl-039b5c21864604ac410777f49e11d9a11b255d06.tar.bz2 |
Fix part of [d19aef1487] (broken --disable-load on MacOSX), broken by [4d417791c9]
-rw-r--r-- | generic/tclLoadNone.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclLoadNone.c b/generic/tclLoadNone.c index c22c4c4..6cb4378 100644 --- a/generic/tclLoadNone.c +++ b/generic/tclLoadNone.c @@ -104,7 +104,9 @@ TclpLoadMemory( int size, /* Dummy: unused by this implementation */ int codeSize, /* Dummy: unused by this implementation */ Tcl_LoadHandle *loadHandle, /* Dummy: unused by this implementation */ - Tcl_FSUnloadFileProc **unloadProcPtr) + Tcl_FSUnloadFileProc **unloadProcPtr, + /* Dummy: unused by this implementation */ + int flags) /* Dummy: unused by this implementation */ { Tcl_SetObjResult(interp, Tcl_NewStringObj("dynamic loading from memory " |