From d14aeb3052fdd1001c677daadb07eb3548f37ad2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ture=20P=C3=A5lsson?= <ture@lysator.liu.se>
Date: Fri, 5 Dec 2014 09:17:08 +0100
Subject: [PATCH] Get rid of data type warning

---
 src/protobuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/protobuf.c b/src/protobuf.c
index 21959ec..ca482d6 100644
--- a/src/protobuf.c
+++ b/src/protobuf.c
@@ -1405,7 +1405,7 @@ parse_pbf_nodes (readosm_string_table * strings,
 		      for (; i_keys < packed_keys.count; i_keys++)
 			{
 			    /* decoding packed-keys */
-			    int is = *(packed_keys.values + i_keys);
+			    unsigned int is = *(packed_keys.values + i_keys);
 			    if (is == 0)
 			      {
 				  /* next Node */
-- 
GitLab