mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-12 17:14:36 +02:00
Merge branch 'bugfix/fixed-log-related-warnings-in-pthread' into 'master'
bugfix(pthread): fixed log related warning See merge request espressif/esp-idf!24726
This commit is contained in:
@@ -442,7 +442,7 @@ void pthread_exit(void *value_ptr)
|
||||
}
|
||||
}
|
||||
|
||||
ESP_LOGD(TAG, "Task stk_wm = %d", uxTaskGetStackHighWaterMark(NULL));
|
||||
ESP_LOGD(TAG, "Task stk_wm = %d", (int)uxTaskGetStackHighWaterMark(NULL));
|
||||
|
||||
xSemaphoreGive(s_threads_mux);
|
||||
// note: if this thread is joinable then after giving back s_threads_mux
|
||||
|
Reference in New Issue
Block a user