Skip to content

Commit

Permalink
fix(esp-tls): Remove useless const from size paramter
Browse files Browse the repository at this point in the history
  • Loading branch information
0xFEEDC0DE64 committed Nov 19, 2024
1 parent 3c99557 commit f3afd06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp-tls/esp_tls.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f3afd06

Please sign in to comment.