diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-06-07 15:18:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-06-07 15:18:38 (GMT) |
commit | 68be5b2b62dfcf1b9b7e348a71c4d88e08f19ef9 (patch) | |
tree | b16f42225beb8cfcf7f51d80379d06434b134fb7 /macosx | |
parent | 9c05979998520bc1162e96cdd7a6de1011ff548c (diff) | |
download | tcl-68be5b2b62dfcf1b9b7e348a71c4d88e08f19ef9.zip tcl-68be5b2b62dfcf1b9b7e348a71c4d88e08f19ef9.tar.gz tcl-68be5b2b62dfcf1b9b7e348a71c4d88e08f19ef9.tar.bz2 |
Tcl_GetWideIntFromObj() -> TclGetWideIntFromObj(), and minor other simplifications/optimizations. No functional change.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tclMacOSXFCmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tclMacOSXFCmd.c b/macosx/tclMacOSXFCmd.c index 8ecfd0b..f34b280 100644 --- a/macosx/tclMacOSXFCmd.c +++ b/macosx/tclMacOSXFCmd.c @@ -319,7 +319,7 @@ TclMacOSXSetFileAttribute( } else { Tcl_WideInt newRsrcForkSize; - if (Tcl_GetWideIntFromObj(interp, attributePtr, + if (TclGetWideIntFromObj(interp, attributePtr, &newRsrcForkSize) != TCL_OK) { return TCL_ERROR; } |