From 51528a586ee2e3f271181eb852359428ddfb1fb3 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 1 Dec 2013 21:13:17 +0100 Subject: tss: silence compiler warning about variable signedness --- src/tss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tss.c b/src/tss.c index 03b723e..81b39fa 100644 --- a/src/tss.c +++ b/src/tss.c @@ -827,7 +827,7 @@ int tss_response_get_path_by_entry(plist_t response, const char* entry, char** p } int tss_response_get_blob_by_path(plist_t tss, const char* path, unsigned char** blob) { - int i = 0; + uint32_t i = 0; uint32_t tss_size = 0; uint64_t blob_size = 0; char* entry_key = NULL; -- cgit v1.1-32-gdbae