From 95fab3eca1fbce8fb3b42692ba990848af6848fa Mon Sep 17 00:00:00 2001 From: midipix Date: Nov 11 2016 04:35:52 +0000 Subject: pe_free_driver_ctx(): fix readability. --- diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index 7ef510e..fdc2704 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -240,8 +240,8 @@ void pe_free_driver_ctx(struct pe_driver_ctx * ctx) uintptr_t addr; if (ctx) { - addr = (uintptr_t)ctx - offsetof(struct pe_driver_ctx_alloc,ctx); - addr = addr - offsetof(struct pe_driver_ctx_impl,ctx); + addr = (uintptr_t)ctx - offsetof(struct pe_driver_ctx_impl,ctx); + addr = addr - offsetof(struct pe_driver_ctx_alloc,ctx); ictx = (struct pe_driver_ctx_alloc *)addr; pe_free_driver_ctx_impl(ictx); }