From 1507f900596d47837e3feff11dad08b143a88c83 Mon Sep 17 00:00:00 2001 From: lazymio Date: Thu, 4 Nov 2021 20:07:01 +0100 Subject: [PATCH] Fix name typo --- include/unicorn/unicorn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index b4988d48..f0452284 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -635,13 +635,13 @@ uc_err uc_query(uc_engine *uc, uc_query_type type, size_t *result); Also see uc_ctl_* macro helpers for easy use. @uc: handle returned by uc_open() - @option: control type. + @control: the control type. @args: See uc_control_type for details about variadic arguments. @return: error code of uc_err enum type (UC_ERR_*, see above) */ UNICORN_EXPORT -uc_err uc_ctl(uc_engine *uc, uc_control_type option, ...); +uc_err uc_ctl(uc_engine *uc, uc_control_type control, ...); /* Report the last error number when some API function fails.