Skip to content

Commit 8a28979

Browse files
committed
style
1 parent 119e73d commit 8a28979

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

libraries/ESP8266WiFi/examples/WiFiManualWebServer/WiFiManualWebServer.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ void loop() {
8383

8484
// read/ignore the rest of the request
8585
// do not client.flush(): it is for output only, see below
86-
while (client.available())
87-
{
86+
while (client.available()) {
8887
// byte by byte is not very efficient
8988
client.read();
9089
}

tests/examples_restyle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
cd $(cd ${0%/*}; pwd)
3-
echo astyle --options=examples_style.conf ../libraries/*/examples/*/*.ino
3+
astyle --options=examples_style.conf ../libraries/*/examples/*/*.ino

0 commit comments

Comments
 (0)