Skip to content

Commit

Permalink
Fixed compile error and updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
koderchina committed Sep 23, 2024
1 parent d356bee commit a361fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.12
- uses: DoozyX/clang-format-lint-action@v0.18.2
with:
source: "./src"
exclude: "./src/libs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void setup()
// Try connecting to a WiFi network.
// Parameters are network SSID, password, timeout in seconds and whether to print to serial.
// If the Inkplate isn't able to connect to a network stop further code execution and print an error message.
if (!display.connectWiFi(ssid, pass, WIFI_TIMEOUT, true))
if (!display.connectWiFi(ssid, password, WIFI_TIMEOUT, true))
{
//Can't connect to netowrk
// Clear display for the error message
Expand Down

0 comments on commit a361fb2

Please sign in to comment.