Skip to content

Commit e86d9f1

Browse files
committed
Fixes compile error in wifi_sta.c (missing semicolon).
1 parent bd34d68 commit e86d9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/wifi_sta.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ static void wifi_sta_set_connected(bool c)
178178
xEventGroupClearBits(wifi_sta_event_group, WIFI_STA_EVENT_GROUP_CONNECTED_FLAG);
179179
}
180180

181-
ESP_LOGI(TAG, "Device is now %s WIFI network", c ? "connected to" : "disconnected from")
181+
ESP_LOGI(TAG, "Device is now %s WIFI network", c ? "connected to" : "disconnected from");
182182
}

0 commit comments

Comments
 (0)