Skip to content

Commit

Permalink
Merge 8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Dec 20, 2021
2 parents ee1c392 + 992992e commit a3659e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generic/tclExecute.c
Original file line number Diff line number Diff line change
Expand Up @@ -5811,7 +5811,7 @@ TEBCresume(
if (((size_t) shift < CHAR_BIT*sizeof(long))
&& !((w1>0 ? w1 : ~w1) &
-(1UL<<(CHAR_BIT*sizeof(long) - 1 - shift)))) {
wResult = (unsigned long)w1 << shift;
wResult = (Tcl_WideUInt)w1 << shift;
goto wideResultOfArithmetic;
}
}
Expand Down

0 comments on commit a3659e3

Please sign in to comment.