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:
parent
b38c466e8d
commit
625cedcd5a
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user