typo in dumprecursive return type

should be CborErrorr rather than bool
diff --git a/examples/simplereader.c b/examples/simplereader.c
index 156e039..4752c08 100644
--- a/examples/simplereader.c
+++ b/examples/simplereader.c
@@ -32,7 +32,7 @@
         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;