1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

fix(freertos) Fixed the signed vs unsigned comparation warning.

Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
This commit is contained in:
Nicușor Cîțu 2023-07-10 15:14:36 +03:00 committed by Gabor Kiss-Vamosi
parent b38c466e8d
commit 625cedcd5a

View File

@ -252,7 +252,7 @@ lv_res_t lv_thread_sync_signal(lv_thread_sync_t * pxCond)
0,
ulLocalWaitingThreads)) {
/* Unblock all. */
for(int i = 0; i < ulLocalWaitingThreads; i++) {
for(uint32_t i = 0; i < ulLocalWaitingThreads; i++) {
xSemaphoreGive(pxCond->xCondWaitSemaphore);
}