Skip to content

Commit 4f3e643

Browse files
committed
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
2 parents d69378c + 4bbff34 commit 4f3e643

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)