From dac69c5332a165045a69019aaa576a1c4b634774 Mon Sep 17 00:00:00 2001 From: Aiman Ismail Date: Tue, 24 Sep 2019 19:38:26 +0200 Subject: [PATCH] credman: change credman_buffer_t::s type to 'const void *' --- sys/include/net/credman.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/net/credman.h b/sys/include/net/credman.h index 8543697016..183c6f4b2d 100644 --- a/sys/include/net/credman.h +++ b/sys/include/net/credman.h @@ -45,7 +45,7 @@ extern "C" { * @brief Buffer of the credential */ typedef struct { - void *s; /**< Pointer to the buffer */ + const void *s; /**< Pointer to the buffer */ size_t len; /**< Length of credman_buffer_t::s */ } credman_buffer_t;