mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-06-20 03:17:48 +00:00
Merge pull request #207 from williballenthin/patch-1
uc.c: fix minor typo
This commit is contained in:
commit
cf727ad323
2
uc.c
2
uc.c
|
@ -88,7 +88,7 @@ const char *uc_strerror(uc_err code)
|
||||||
case UC_ERR_FETCH_PROT:
|
case UC_ERR_FETCH_PROT:
|
||||||
return "Fetch from non-executable memory (UC_ERR_FETCH_PROT)";
|
return "Fetch from non-executable memory (UC_ERR_FETCH_PROT)";
|
||||||
case UC_ERR_ARG:
|
case UC_ERR_ARG:
|
||||||
return "Invalid argumet (UC_ERR_ARG)";
|
return "Invalid argument (UC_ERR_ARG)";
|
||||||
case UC_ERR_READ_UNALIGNED:
|
case UC_ERR_READ_UNALIGNED:
|
||||||
return "Read from unaligned memory (UC_ERR_READ_UNALIGNED)";
|
return "Read from unaligned memory (UC_ERR_READ_UNALIGNED)";
|
||||||
case UC_ERR_WRITE_UNALIGNED:
|
case UC_ERR_WRITE_UNALIGNED:
|
||||||
|
|
Loading…
Reference in a new issue