typo in dumprecursive return type

should be CborErrorr rather than bool
This commit is contained in:
Svyatoslav Phirsov
2018-10-23 10:47:40 -07:00
committed by Thiago Macieira
parent 2b267847ef
commit 1db99f95f2
+1 -1
View File
@@ -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;