From 95e8d735327fac8f941abc9951f5363500dafcb8 Mon Sep 17 00:00:00 2001 From: Thomas Eichinger Date: Fri, 6 Jan 2017 11:07:03 -0800 Subject: [PATCH] sys/base64: fix a documentation confusion --- sys/include/base64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/base64.h b/sys/include/base64.h index a0ad17a580..21caa50a1a 100644 --- a/sys/include/base64.h +++ b/sys/include/base64.h @@ -30,7 +30,7 @@ extern "C" { #define BASE64_ERROR_BUFFER_OUT (-1) /**< error value for invalid output buffer pointer */ #define BASE64_ERROR_BUFFER_OUT_SIZE (-2) /**< error value for invalid output buffer size */ #define BASE64_ERROR_DATA_IN (-3) /**< error value for invalid input buffer */ -#define BASE64_ERROR_DATA_IN_SIZE (-4) /**< error value for invalid output buffer size */ +#define BASE64_ERROR_DATA_IN_SIZE (-4) /**< error value for invalid input buffer size */ /** * @brief Encodes a given datum to base64 and save the result to the given destination.