mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-03-24 04:45:17 +00:00
Fix warning and let the autoformatter do its thing
This commit is contained in:
parent
9de13d7ea9
commit
e786379358
@ -1,3 +1,4 @@
|
||||
#define _GNU_SOURCE // for asprintf()
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
2
tile.cc
2
tile.cc
@ -1102,7 +1102,7 @@ void *run_thread(void *vargs) {
|
||||
*arg->midy = y;
|
||||
*arg->most = len;
|
||||
} else if (len == *arg->most) {
|
||||
unsigned long long a = (((unsigned long long) x ) << 32) | y;
|
||||
unsigned long long a = (((unsigned long long) x) << 32) | y;
|
||||
unsigned long long b = (((unsigned long long) *arg->midx) << 32) | *arg->midy;
|
||||
|
||||
if (a < b) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user