From f36abe0a776fa52b972a3fec1b46b94e26814f22 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 22 Apr 2014 09:10:33 +0200 Subject: [PATCH] Change local counter to size_t --- src/marcdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marcdisp.c b/src/marcdisp.c index cb34dde..3271889 100644 --- a/src/marcdisp.c +++ b/src/marcdisp.c @@ -257,7 +257,7 @@ static int element_name_append_attribute_value( /* TODO Map special codes to something possible for XML ELEMENT names */ int encode = 0; - int index = 0; + size_t index = 0; int success = 0; for (index = 0; index < code_len; index++) { -- 1.7.10.4