uc.c: fix minor typo

s/argumet/argument/g
This commit is contained in:
Willi Ballenthin 2015-10-19 16:52:56 -04:00
parent 298a942dd1
commit 34c7b70bcb

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: