1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 00:41:17 +01:00

cbor: fix typo

This commit is contained in:
Lucio Torre 2016-03-30 14:37:04 +02:00 committed by Oleg Hahm
parent 04fc0b35a7
commit 5f26b7686f

View File

@ -397,7 +397,7 @@ size_t cbor_serialize_unicode_string(cbor_stream_t *stream, const char *val);
* @param[in] stream The stream to deserialize
* @param[in] offset The offset within the stream where to start deserializing
* @param[out] val Pointer to a char *
* @param[out] length Pointer tp a size_t to store the size of the string
* @param[out] length Pointer to a size_t to store the size of the string
*
* @return Number of bytes written into @p val
*/