diff options
author | midipix <writeonce@midipix.org> | 2025-05-31 17:14:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-05-31 17:14:26 +0000 |
commit | 1c0129c0e4039a3b337cc54a2b9cbace7e6a0849 (patch) | |
tree | f23421e178951590ef5fd6060f805928ddb13a01 | |
parent | 75adc914436d3f3b6ee8cc8b188af1bc3079ccd5 (diff) | |
download | perk-1c0129c0e4039a3b337cc54a2b9cbace7e6a0849.tar.bz2 perk-1c0129c0e4039a3b337cc54a2b9cbace7e6a0849.tar.xz |
struct pe_unit_ctx: remove mapping info (present elsewhere, i.e. via r_image).
-rw-r--r-- | include/perk/perk.h | 1 | ||||
-rw-r--r-- | src/driver/pe_unit_ctx.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/perk/perk.h b/include/perk/perk.h index 0eefe67..8e439d3 100644 --- a/include/perk/perk.h +++ b/include/perk/perk.h @@ -224,7 +224,6 @@ struct pe_driver_ctx { struct pe_unit_ctx { const char * const * path; - const struct pe_raw_image * map; const struct pe_image_meta * meta; void * any; }; diff --git a/src/driver/pe_unit_ctx.c b/src/driver/pe_unit_ctx.c index d1fea0e..76823b0 100644 --- a/src/driver/pe_unit_ctx.c +++ b/src/driver/pe_unit_ctx.c @@ -57,7 +57,6 @@ int pe_lib_get_unit_ctx( ctx->path = path; ctx->uctx.path = &ctx->path; - ctx->uctx.map = &ctx->map; ctx->uctx.meta = ctx->meta; *pctx = &ctx->uctx; |