mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-07-07 17:00:35 +00:00
Merge pull request #229 from practicalswift/typos
Fix typos. Remove trailing whitespace.
This commit is contained in:
commit
b41db5abd9
4
uc.c
4
uc.c
|
@ -62,7 +62,7 @@ const char *uc_strerror(uc_err code)
|
||||||
case UC_ERR_NOMEM:
|
case UC_ERR_NOMEM:
|
||||||
return "No memory available or memory not present (UC_ERR_NOMEM)";
|
return "No memory available or memory not present (UC_ERR_NOMEM)";
|
||||||
case UC_ERR_ARCH:
|
case UC_ERR_ARCH:
|
||||||
return "Invalid/unsupported architecture(UC_ERR_ARCH)";
|
return "Invalid/unsupported architecture (UC_ERR_ARCH)";
|
||||||
case UC_ERR_HANDLE:
|
case UC_ERR_HANDLE:
|
||||||
return "Invalid handle (UC_ERR_HANDLE)";
|
return "Invalid handle (UC_ERR_HANDLE)";
|
||||||
case UC_ERR_MODE:
|
case UC_ERR_MODE:
|
||||||
|
@ -96,7 +96,7 @@ const char *uc_strerror(uc_err code)
|
||||||
case UC_ERR_FETCH_UNALIGNED:
|
case UC_ERR_FETCH_UNALIGNED:
|
||||||
return "Fetch from unaligned memory (UC_ERR_FETCH_UNALIGNED)";
|
return "Fetch from unaligned memory (UC_ERR_FETCH_UNALIGNED)";
|
||||||
case UC_ERR_HOOK_EXIST:
|
case UC_ERR_HOOK_EXIST:
|
||||||
return "Hook for this type event already existed (UC_ERR_HOOK_EXIST)";
|
return "Hook for this type event already exists (UC_ERR_HOOK_EXIST)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue