API cs_option(): @value now has size_t, so mapping opaque pointer is possible for future options
diff --git a/cs.c b/cs.c
index a6e2ae2..461e63b 100644
--- a/cs.c
+++ b/cs.c
@@ -196,7 +196,7 @@
 	insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
 }
 
-cs_err cs_option(csh ud, cs_opt_type type, cs_opt_value value)
+cs_err cs_option(csh ud, cs_opt_type type, size_t value)
 {
 	cs_struct *handle = (cs_struct *)(uintptr_t)ud;
 	if (!handle)