Skip to content

Commit

Permalink
serial.cpp: fix shift-op typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wsw0108 committed Dec 25, 2018
1 parent 5421dbf commit b746688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox
}

if (!*(sst->initialized)) {
if (x < 0 || x >= (1LL << 32) || y < 0 || y >= (1LL < 32)) {
if (x < 0 || x >= (1LL << 32) || y < 0 || y >= (1LL << 32)) {
*(sst->initial_x) = 1LL << 31;
*(sst->initial_y) = 1LL << 31;
} else {
Expand Down

0 comments on commit b746688

Please sign in to comment.