diff options
author | Nikias Bassen | 2013-12-01 21:13:17 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-12-01 21:13:17 +0100 |
commit | 51528a586ee2e3f271181eb852359428ddfb1fb3 (patch) | |
tree | b094d3e8bd0f1cce0096e6dbc83b76a033a4ab57 | |
parent | 55b99099d306724e186f1683933bc599a083973a (diff) | |
download | idevicerestore-51528a586ee2e3f271181eb852359428ddfb1fb3.tar.gz idevicerestore-51528a586ee2e3f271181eb852359428ddfb1fb3.tar.bz2 |
tss: silence compiler warning about variable signedness
-rw-r--r-- | src/tss.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |