Skip to content

Commit

Permalink
Fix sample regression
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Feb 2, 2019
1 parent 2c82621 commit 370b142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbor.c
Expand Up @@ -15,7 +15,7 @@ cbor_item_t *cbor_load(cbor_data source, size_t source_size,
static struct cbor_callbacks callbacks = {
.uint8 = &cbor_builder_uint8_callback,
.uint16 = &cbor_builder_uint16_callback,
.uint32 = &cbor_builder_uint32_callback,
.uint32 = &cbor_builder_uint32_callback,
.uint64 = &cbor_builder_uint64_callback,

.negint8 = &cbor_builder_negint8_callback,
Expand Down

0 comments on commit 370b142

Please sign in to comment.