Merge branch 'contrib/github_pr_14909' into 'master'

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

Closes IDFGH-14099

See merge request espressif/esp-idf!36828
This commit is contained in:
Mahavir Jain
2025-04-07 16:48:32 +08:00

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;