Archived
typo in dumprecursive return type
should be CborErrorr rather than bool
This commit is contained in:
committed by
Thiago Macieira
parent
2b267847ef
commit
1db99f95f2
@@ -32,7 +32,7 @@ static void dumpbytes(const uint8_t *buf, size_t len)
|
||||
printf("%02X ", *buf++);
|
||||
}
|
||||
|
||||
static bool dumprecursive(CborValue *it, int nestingLevel)
|
||||
static CborError dumprecursive(CborValue *it, int nestingLevel)
|
||||
{
|
||||
while (!cbor_value_at_end(it)) {
|
||||
CborError err;
|
||||
|
||||
Reference in New Issue
Block a user