From 3263c84b321cccf6964a2508fc7e3148dc1db354 Mon Sep 17 00:00:00 2001 From: Al Date: Sat, 30 Dec 2017 02:32:35 -0500 Subject: [PATCH] [api] using uint32_t for geohash precision option --- src/libpostal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libpostal.h b/src/libpostal.h index 76aa4ab5..1b805c2a 100644 --- a/src/libpostal.h +++ b/src/libpostal.h @@ -185,7 +185,7 @@ typedef struct libpostal_near_dupe_hash_options { bool with_latlon; double latitude; double longitude; - size_t geohash_precision; + uint32_t geohash_precision; bool name_and_address_keys; bool name_only_keys; bool address_only_keys;