summaryrefslogtreecommitdiffhomepage
path: root/src/driver/pe_unit_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-11-23 02:04:25 -0500
committermidipix <writeonce@midipix.org>2016-11-10 23:35:26 -0500
commit8fd1f503fdfc593aed4b296cfa7024a4a09d540c (patch)
treee03b524fa0bc97ea46f7dd6521184ce111261690 /src/driver/pe_unit_ctx.c
parentb46e6f435a522bc95e353493c1da3e421d5445be (diff)
downloadperk-8fd1f503fdfc593aed4b296cfa7024a4a09d540c.tar.bz2
perk-8fd1f503fdfc593aed4b296cfa7024a4a09d540c.tar.xz
driver flags: remove the superfluous FLAG_ prefix.
Diffstat (limited to 'src/driver/pe_unit_ctx.c')
-rw-r--r--src/driver/pe_unit_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/pe_unit_ctx.c b/src/driver/pe_unit_ctx.c
index 5bcac3d..bed99c6 100644
--- a/src/driver/pe_unit_ctx.c
+++ b/src/driver/pe_unit_ctx.c
@@ -26,7 +26,7 @@ int pe_get_unit_ctx(
if (!dctx || !(ctx = calloc(sizeof(*ctx),1)))
return -1;
- prot = (dctx->cctx.actflags & PERK_ACTION_FLAG_MAP_READWRITE)
+ prot = (dctx->cctx.actflags & PERK_ACTION_MAP_READWRITE)
? PROT_READ | PROT_WRITE
: PROT_READ;