Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ffd15e4

Browse filesBrowse files
acevestme-no-dev
authored andcommitted
fix log error code format (#2366)
1 parent 29d5987 commit ffd15e4
Copy full SHA for ffd15e4

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎libraries/WiFi/src/WiFiGeneric.cpp

Copy file name to clipboardExpand all lines: libraries/WiFi/src/WiFiGeneric.cpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ static bool espWiFiStop(){
168168
_esp_wifi_started = false;
169169
err = esp_wifi_stop();
170170
if(err){
171-
log_e("Could not stop WiFi! %u", err);
171+
log_e("Could not stop WiFi! %d", err);
172172
_esp_wifi_started = true;
173173
return false;
174174
}
@@ -496,7 +496,7 @@ bool WiFiGenericClass::mode(wifi_mode_t m)
496496
esp_err_t err;
497497
err = esp_wifi_set_mode(m);
498498
if(err){
499-
log_e("Could not set mode! %u", err);
499+
log_e("Could not set mode! %d", err);
500500
return false;
501501
}
502502
return true;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.