fix(esp-tls): Remove useless const from size paramter

This commit is contained in:
2024-11-19 14:10:44 +01:00
parent f420609c33
commit 4bbff34ac2

View File

@@ -49,7 +49,7 @@ typedef enum esp_tls_role {
*/
typedef struct psk_key_hint {
const uint8_t* key; /*!< key in PSK authentication mode in binary format */
const size_t key_size; /*!< length of the key */
size_t key_size; /*!< length of the key */
const char* hint; /*!< hint in PSK authentication mode in string format */
} psk_hint_key_t;