Skip to content

Commit 1db99f9

Browse files
phirsovthiagomacieira
authored andcommitted
typo in dumprecursive return type
should be CborErrorr rather than bool
1 parent 2b26784 commit 1db99f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/simplereader.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ static void dumpbytes(const uint8_t *buf, size_t len)
3232
printf("%02X ", *buf++);
3333
}
3434

35-
static bool dumprecursive(CborValue *it, int nestingLevel)
35+
static CborError dumprecursive(CborValue *it, int nestingLevel)
3636
{
3737
while (!cbor_value_at_end(it)) {
3838
CborError err;

0 commit comments

Comments
 (0)