sys/cbor: DEBUG fixes

This commit is contained in:
Kaspar Schleiser 2017-10-21 00:40:07 +02:00
parent 7b72f623d2
commit 38f18137f8

View File

@ -960,7 +960,7 @@ static size_t cbor_stream_decode_at(cbor_stream_t *stream, size_t offset, int in
offset += inner_read_bytes = cbor_stream_decode_at(stream, offset, indent + 2); offset += inner_read_bytes = cbor_stream_decode_at(stream, offset, indent + 2);
if (inner_read_bytes == 0) { if (inner_read_bytes == 0) {
DEBUG("Failed to read array item at position %d\n", i); DEBUG("Failed to read array item at position %u\n", (unsigned)i);
break; break;
} }
@ -994,7 +994,7 @@ static size_t cbor_stream_decode_at(cbor_stream_t *stream, size_t offset, int in
offset += value_read_bytes = cbor_stream_decode_at(stream, offset, indent + 2); /* value */ offset += value_read_bytes = cbor_stream_decode_at(stream, offset, indent + 2); /* value */
if (key_read_bytes == 0 || value_read_bytes == 0) { if (key_read_bytes == 0 || value_read_bytes == 0) {
DEBUG("Failed to read key-value pair at position %d\n", i); DEBUG("Failed to read key-value pair at position %u\n", (unsigned)i);
break; break;
} }
@ -1073,7 +1073,7 @@ void cbor_stream_decode(cbor_stream_t *stream)
size_t read_bytes = cbor_stream_decode_at(stream, offset, 0); size_t read_bytes = cbor_stream_decode_at(stream, offset, 0);
if (read_bytes == 0) { if (read_bytes == 0) {
DEBUG("Failed to read from stream at offset %d, start byte 0x%02X\n", offset, stream->data[offset]); DEBUG("Failed to read from stream at offset %u, start byte 0x%02X\n", (unsigned)offset, stream->data[offset]);
cbor_stream_print(stream); cbor_stream_print(stream);
return; return;
} }