1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #12299 from pokgak/pr/credman_change_to_const_void

credman: change credman_buffer_t::s type to 'const void *'
This commit is contained in:
Martine Lenders 2019-09-24 20:38:20 +02:00 committed by GitHub
commit cecdd579cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;