From d725e5fee96f27de0169bcb8ed66ed50ee6321ac Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Sat, 29 Aug 2015 14:00:31 +0800 Subject: [PATCH] improve instruction for uc_mem_map() in unicorn.h --- 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 c2d837aa..7cd1ad08 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -405,8 +405,8 @@ typedef enum uc_prot { @size: size of the new memory region to be mapped in. This size must be multiple of 4KB, or this will return with UC_ERR_MAP error. @perms: Permissions for the newly mapped region. - This must be some combination of UC_PROT_READ | UC_PROT_WRITE, - or this will return with UC_ERR_MAP error. + This must be some combination of UC_PROT_READ & UC_PROT_WRITE, + or this will return with UC_ERR_MAP error. See uc_prot type above. @return UC_ERR_OK on success, or other value on failure (refer to uc_err enum for detailed error).