summaryrefslogtreecommitdiffstats
path: root/generic/tclBinary.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r--generic/tclBinary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index ae454c4..8eea58c 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.c
@@ -1013,7 +1013,7 @@ BinaryFormatCmd(
* The macro evals its args more than once: avoid arg++
*/
- if (Tcl_ListObjGetElements(interp, objv[arg], &listc,
+ if (TclListObjGetElements(interp, objv[arg], &listc,
&listv) != TCL_OK) {
return TCL_ERROR;
}
@@ -1297,7 +1297,7 @@ BinaryFormatCmd(
listc = 1;
count = 1;
} else {
- Tcl_ListObjGetElements(interp, objv[arg], &listc, &listv);
+ TclListObjGetElements(interp, objv[arg], &listc, &listv);
if (count == BINARY_ALL) {
count = listc;
}