Skip to content

Commit 4bbff34

Browse files
committed
fix(esp-tls): Remove useless const from size paramter
1 parent f420609 commit 4bbff34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp-tls/esp_tls.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ typedef enum esp_tls_role {
4949
*/
5050
typedef struct psk_key_hint {
5151
const uint8_t* key; /*!< key in PSK authentication mode in binary format */
52-
const size_t key_size; /*!< length of the key */
52+
size_t key_size; /*!< length of the key */
5353
const char* hint; /*!< hint in PSK authentication mode in string format */
5454
} psk_hint_key_t;
5555

0 commit comments

Comments
 (0)