Rename unhandled CPU exception

This commit is contained in:
Hoang-Vu Dang
2016-07-05 11:10:39 -05:00
parent 9cdca5a32b
commit 9a2a5b15d8
8 changed files with 9 additions and 9 deletions

4
uc.c
View File

@ -96,8 +96,8 @@ const char *uc_strerror(uc_err code)
return "Fetch from unaligned memory (UC_ERR_FETCH_UNALIGNED)";
case UC_ERR_RESOURCE:
return "Insufficient resource (UC_ERR_RESOURCE)";
case UC_ERR_UNHANDLED_INTERRUPT:
return "Unhandled machine interrupt (UC_ERR_UNHANDLED_INTERRUPT)";
case UC_ERR_EXCEPTION:
return "Unhandled CPU exception (UC_ERR_EXCEPTION)";
}
}