Skip to content

Commit

Permalink
Unbreak windows build caused by [066a9b81b8|this] commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Dec 20, 2021
1 parent 2184d73 commit 992992e
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 @@ -6020,7 +6020,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 992992e

Please sign in to comment.