diff options
author | midipix <writeonce@midipix.org> | 2024-02-20 17:29:18 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-20 17:29:18 +0000 |
commit | 33a569a279a1c0acbf06fe6622866bd79f111685 (patch) | |
tree | 0fafd5353e258d17b127bbd468076ee0150cc609 /src/logic/slbt_exec_compile.c | |
parent | d577a3308c18cb3b8d5fc46fc5fcf8a8fb8ad1a5 (diff) | |
download | slibtool-33a569a279a1c0acbf06fe6622866bd79f111685.tar.bz2 slibtool-33a569a279a1c0acbf06fe6622866bd79f111685.tar.xz |
utility api's: _output_ namespace: simplified the execution context interfaces.
Diffstat (limited to 'src/logic/slbt_exec_compile.c')
-rw-r--r-- | src/logic/slbt_exec_compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/slbt_exec_compile.c b/src/logic/slbt_exec_compile.c index d651607..8c5e870 100644 --- a/src/logic/slbt_exec_compile.c +++ b/src/logic/slbt_exec_compile.c @@ -230,7 +230,7 @@ int slbt_exec_compile( return SLBT_NESTED_ERROR(dctx); if (!(cctx->drvflags & SLBT_DRIVER_SILENT)) { - if (slbt_output_compile(dctx,ectx)) { + if (slbt_output_compile(ectx)) { slbt_ectx_free_exec_ctx(actx); return SLBT_NESTED_ERROR(dctx); } @@ -265,7 +265,7 @@ int slbt_exec_compile( return SLBT_NESTED_ERROR(dctx); if (!(cctx->drvflags & SLBT_DRIVER_SILENT)) { - if (slbt_output_compile(dctx,ectx)) { + if (slbt_output_compile(ectx)) { slbt_ectx_free_exec_ctx(actx); return SLBT_NESTED_ERROR(dctx); } |