From 322301238fb6a04e5d80bd659ea535de595fe49c Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Wed, 9 Nov 2022 15:11:22 +0530 Subject: [PATCH] esp_https_server: fix build failure due to syntax error --- components/esp_https_server/include/esp_https_server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_https_server/include/esp_https_server.h b/components/esp_https_server/include/esp_https_server.h index 330f2e646b..bffdfce62b 100644 --- a/components/esp_https_server/include/esp_https_server.h +++ b/components/esp_https_server/include/esp_https_server.h @@ -151,8 +151,8 @@ typedef struct httpd_ssl_config httpd_ssl_config_t; .use_secure_element = false, \ .user_cb = NULL, \ .ssl_userdata = NULL, \ - .cert_select_cb = NULL \ - .alpn_protos = NULL \ + .cert_select_cb = NULL, \ + .alpn_protos = NULL, \ } /**