Skip to content

Commit

Permalink
Fix ESP8266 native Ethernet compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Aug 11, 2023
1 parent a5fb808 commit 044543d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ESP_Mail_TCPClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ class ESP_Mail_TCPClient
goto ex;
#endif
#if defined(INC_W5100_LWIP)
if wcs
->(_session_config->spi_ethernet_module.w5100) goto ex;
if (_session_config->spi_ethernet_module.w5100)
goto ex;
#endif
#if defined(INC_W5500_LWIP)
if (_session_config->spi_ethernet_module.w5500)
Expand Down

0 comments on commit 044543d

Please sign in to comment.