Nathan Phillips 3 anni fa
parent
commit
2d047f5439
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      components/esp_http_server/src/httpd_main.c

+ 1 - 1
components/esp_http_server/src/httpd_main.c

@@ -506,7 +506,7 @@ esp_err_t httpd_start(httpd_handle_t *handle, const httpd_config_t *config)
         return ESP_ERR_HTTPD_TASK;
         return ESP_ERR_HTTPD_TASK;
     }
     }
 
 
-    *handle = (httpd_handle_t *)hd;
+    *handle = (httpd_handle_t)hd;
     return ESP_OK;
     return ESP_OK;
 }
 }