Merge pull request #207 from williballenthin/patch-1

uc.c: fix minor typo
This commit is contained in:
Nguyen Anh Quynh 2015-10-20 06:21:17 +08:00
commit cf727ad323

2
uc.c
View file

@ -88,7 +88,7 @@ const char *uc_strerror(uc_err code)
case UC_ERR_FETCH_PROT:
return "Fetch from non-executable memory (UC_ERR_FETCH_PROT)";
case UC_ERR_ARG:
return "Invalid argumet (UC_ERR_ARG)";
return "Invalid argument (UC_ERR_ARG)";
case UC_ERR_READ_UNALIGNED:
return "Read from unaligned memory (UC_ERR_READ_UNALIGNED)";
case UC_ERR_WRITE_UNALIGNED: