!115 fix: correct spelling

Merge pull request !115 from rtos-lover/los_swtmr
This commit is contained in:
openharmony_ci
2021-05-15 09:45:21 +08:00
committed by Gitee
2 changed files with 13 additions and 13 deletions

View File

@@ -47,7 +47,7 @@ static UINT32 Testcase(VOID)
ret = LOS_QueueRead(g_testQueueID01, &buff2, QUEUE_BASE_MSGSIZE, 0);
ICUNIT_GOTO_EQUAL(ret, LOS_OK, ret, EXIT);
for (index = 0; index < 7; index++) { // 7, buffer szie
for (index = 0; index < 7; index++) { // 7, buffer size
ICUNIT_GOTO_EQUAL(*((char *)(intptr_t)buff2 + index), buff1[index],
*((char *)(intptr_t)buff2 + index), EXIT);
}