diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-07-19 08:35:05 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-07-19 08:35:05 (GMT) |
| commit | 850b3e24a87d95e1efbabbc401cf1412078e584c (patch) | |
| tree | 09dce83025f2b8e66665b73ede309b35c027efcf /unix/tclLoadShl.c | |
| parent | 86196ac2048f44c7bc4fc2c057558b8e7ebdca11 (diff) | |
| download | tcl-850b3e24a87d95e1efbabbc401cf1412078e584c.zip tcl-850b3e24a87d95e1efbabbc401cf1412078e584c.tar.gz tcl-850b3e24a87d95e1efbabbc401cf1412078e584c.tar.bz2 | |
Make a start converting -1 -> TCL_INDEX_NONE where appropriate
Diffstat (limited to 'unix/tclLoadShl.c')
| -rw-r--r-- | unix/tclLoadShl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index 5bf97eb..5cde183 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.c @@ -86,7 +86,7 @@ TclpDlopen( Tcl_DString ds; - native = Tcl_UtfToExternalDString(NULL, fileName, -1, &ds); + native = Tcl_UtfToExternalDString(NULL, fileName, TCL_INDEX_NONE, &ds); handle = shl_load(native, BIND_DEFERRED|BIND_VERBOSE|DYNAMIC_PATH, 0L); Tcl_DStringFree(&ds); } @@ -140,7 +140,7 @@ FindSymbol( (void *) &proc) != 0) { Tcl_DStringInit(&newName); TclDStringAppendLiteral(&newName, "_"); - Tcl_DStringAppend(&newName, symbol, -1); + Tcl_DStringAppend(&newName, symbol, TCL_INDEX_NONE); if (shl_findsym(&handle, Tcl_DStringValue(&newName), (short) TYPE_PROCEDURE, (void *) &proc) != 0) { proc = NULL; |
