summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-28 18:57:25 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-09-28 18:57:25 (GMT)
commitd2edfcf2bd90298d02756daff2a473a3eebcd2ee (patch)
tree2cbba2917cd81a2d7a627fcff480ae2c6ae25adf /generic/tclCompile.h
parentb4ae859604d0075ae30c40a35126efb600e3abc9 (diff)
parent3f2c2080ccdce8f6f42a62651cc0e53cb2d8dba9 (diff)
downloadtcl-d2edfcf2bd90298d02756daff2a473a3eebcd2ee.zip
tcl-d2edfcf2bd90298d02756daff2a473a3eebcd2ee.tar.gz
tcl-d2edfcf2bd90298d02756daff2a473a3eebcd2ee.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 500d8eb..695de76 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -1453,7 +1453,7 @@ MODULE_SCOPE int TclPushProcCallFrame(ClientData clientData,
#endif
#define TclGetInt4AtPtr(p) \
- (((int) TclGetInt1AtPtr(p) << 24) | \
+ (((int) (TclGetUInt1AtPtr(p) << 24)) | \
(*((p)+1) << 16) | \
(*((p)+2) << 8) | \
(*((p)+3)))