mirror of
https://github.com/openharmony/drivers_framework.git
synced 2026-08-27 20:49:55 -04:00
fix: avoid compile warning ignored
Close #I3VN5G Change-Id: I01bc6c90bf8ecafbb769e2181ba539974ffb48c8 Signed-off-by: Guangyao Ma <guangyao.ma@outlook.com>
This commit is contained in:
@@ -218,7 +218,7 @@ int32_t MessageSingleNodeTest003(void)
|
||||
|
||||
MSG_BREAK_IF_FUNCTION_FAILED(errCode, OsalDiffTime(&startTime, &endTime, &diffTime));
|
||||
|
||||
HDF_LOGI("Process time %ld \n", diffTime.sec);
|
||||
HDF_LOGI("Process time %llu \n", diffTime.sec);
|
||||
MSG_BREAK_IF(errCode, diffTime.sec > SYNC_MESSAGE_TIMEOUT);
|
||||
} while (false);
|
||||
|
||||
@@ -310,7 +310,7 @@ int32_t MessageSingleNodeTest005(void)
|
||||
|
||||
MSG_BREAK_IF_FUNCTION_FAILED(errCode, OsalDiffTime(&startTime, &endTime, &diffTime));
|
||||
|
||||
HDF_LOGW("Process time %ld \n", diffTime.sec);
|
||||
HDF_LOGW("Process time %llu \n", diffTime.sec);
|
||||
MSG_BREAK_IF(errCode, diffTime.sec > ASYNC_MESSAGE_TIMEOUT);
|
||||
} while (false);
|
||||
errShutdown = errShutdown | OsalSemDestroy(&g_callBackSem);
|
||||
|
||||
Reference in New Issue
Block a user