Skip to content

Commit b57fd66

Browse files
committed
unify style
1 parent 3021a9b commit b57fd66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WebServer/src/ESP8266WebServer-impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ void ESP8266WebServerTemplate<ServerType>::handleClient() {
306306
bool operator != (const compare_s& o) { return memcmp(this, &o, sizeof(o)) != 0; }
307307
};
308308
static compare_s last { false, 0, HC_NONE };
309-
compare_s now = { _currentClient.connected(), _currentClient.available(), _currentStatus };
309+
compare_s now { _currentClient.connected(), _currentClient.available(), _currentStatus };
310310

311311
if (last != now)
312312
{

0 commit comments

Comments
 (0)