fix: avoid compile warning ignored

Close #I3VN5G

Change-Id: I01bc6c90bf8ecafbb769e2181ba539974ffb48c8
Signed-off-by: Guangyao Ma <guangyao.ma@outlook.com>
This commit is contained in:
Guangyao Ma
2021-06-15 17:18:25 +08:00
parent e31e9559b8
commit e8dadc3907
@@ -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);