diff options
| author | 2019-01-18 22:20:05 +0100 | |
|---|---|---|
| committer | 2019-01-18 22:20:05 +0100 | |
| commit | e1f852150d5d3794f32c0ee0fc8314dcb7d2f499 (patch) | |
| tree | 5578727a6794cdbb608200a99cf0705eb58bf40f /src | |
| parent | 3f967317479acc4b98594b4b86a2787cbd2aa1f1 (diff) | |
| download | libplist-e1f852150d5d3794f32c0ee0fc8314dcb7d2f499.tar.gz libplist-e1f852150d5d3794f32c0ee0fc8314dcb7d2f499.tar.bz2 | |
bplist: Silence compiler warning 'comparison is always true ...' (32 bit)
Diffstat (limited to 'src')
| -rw-r--r-- | src/bplist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bplist.c b/src/bplist.c index 679a5e5..e0e7622 100644 --- a/src/bplist.c +++ b/src/bplist.c | |||
| @@ -1199,7 +1199,7 @@ PLIST_API void plist_to_bin(plist_t plist, char **plist_bin, uint32_t * length) | |||
| 1199 | offset_table_index = 0; //unknown yet | 1199 | offset_table_index = 0; //unknown yet |
| 1200 | 1200 | ||
| 1201 | //figure out the storage size required | 1201 | //figure out the storage size required |
| 1202 | size_t req = 0; | 1202 | uint64_t req = 0; |
| 1203 | for (i = 0; i < num_objects; i++) | 1203 | for (i = 0; i < num_objects; i++) |
| 1204 | { | 1204 | { |
| 1205 | node_t* node = ptr_array_index(objects, i); | 1205 | node_t* node = ptr_array_index(objects, i); |
