Fixed Grammar Issues In VM_ERR

This commit is contained in:
Ho Hang 2021-03-29 11:56:26 +08:00 committed by Gitee
parent 1763f37811
commit ea9791f8e1
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ VOID *OsVmBootMemAlloc(size_t len)
UINTPTR ptr; UINTPTR ptr;
if (g_kHeapInited) { if (g_kHeapInited) {
VM_ERR("kernel heap has been inited, should not to use boot mem alloc!"); VM_ERR("kernel heap has been initialized, do not to use boot memory allocation!");
return NULL; return NULL;
} }