diff options
| author | josch <j.schauer@email.de> | 2023-03-26 08:59:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-26 09:59:00 +0200 |
| commit | 2ea036e02c3fe1374d32c23f795879623773a5ef (patch) | |
| tree | d6e66a89f5d54d11875a3a65b41356694442f70f /src/box64context.c | |
| parent | f58ac3e9bf15251d902f22abea9685e7cbe55b2b (diff) | |
| download | box64-2ea036e02c3fe1374d32c23f795879623773a5ef.tar.gz box64-2ea036e02c3fe1374d32c23f795879623773a5ef.zip | |
fix some spelling mistakes (#640)
Diffstat (limited to 'src/box64context.c')
| -rwxr-xr-x | src/box64context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/box64context.c b/src/box64context.c index 95b4a5bd..589493ec 100755 --- a/src/box64context.c +++ b/src/box64context.c @@ -191,7 +191,7 @@ box64context_t *NewBox64Context(int argc) initCycleLog(context); - context->deferedInit = 1; + context->deferredInit = 1; context->sel_serial = 1; init_custommem_helper(context); @@ -268,8 +268,8 @@ void FreeBox64Context(box64context_t** context) if(ctx->zydis) DeleteX64Trace(ctx); - if(ctx->deferedInitList) - box_free(ctx->deferedInitList); + if(ctx->deferredInitList) + box_free(ctx->deferredInitList); /*box_free(ctx->argv);*/ |