diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-11-28 18:04:52 +0200 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-11-28 18:04:52 +0200 |
| commit | c07c09e6572001f736f00efdd060369fbf4a4397 (patch) | |
| tree | 960db0dddaba6443b869c383f234e783641ee20a /include/ecbor.h.in | |
| parent | b52bc66a8fca254100c6f5dad338add2cc5428e7 (diff) | |
Fix ecbor_uint() API to reflect received type.
Diffstat (limited to 'include/ecbor.h.in')
| -rw-r--r-- | include/ecbor.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ecbor.h.in b/include/ecbor.h.in index b9e4726..dab6c44 100644 --- a/include/ecbor.h.in +++ b/include/ecbor.h.in @@ -260,7 +260,7 @@ extern ecbor_item_t ecbor_int (int64_t value); extern ecbor_item_t -ecbor_uint (int64_t value); +ecbor_uint (uint64_t value); extern ecbor_item_t ecbor_bstr (uint8_t *bstr, size_t length); |
