From 3fa3e3256e30f62d24889b572e3ae65ffb63876a Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Feb 2024 01:19:51 +0000 Subject: library api's: _au_ (archiver utility) namespace overhaul. --- src/logic/slbt_exec_ar.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/logic/slbt_exec_ar.c') diff --git a/src/logic/slbt_exec_ar.c b/src/logic/slbt_exec_ar.c index ede3f72..7614ee7 100644 --- a/src/logic/slbt_exec_ar.c +++ b/src/logic/slbt_exec_ar.c @@ -93,19 +93,19 @@ static int slbt_exec_ar_perform_archive_actions( for (arctxp=arctxv; *arctxp; arctxp++) { if (dctx->cctx->fmtflags & SLBT_DRIVER_MODE_AR_OUTPUTS) - if (farname && (slbt_ar_output_arname(*arctxp) < 0)) + if (farname && (slbt_au_output_arname(*arctxp) < 0)) return SLBT_NESTED_ERROR(dctx); if (dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_MEMBERS) - if (slbt_ar_output_members((*arctxp)->meta) < 0) + if (slbt_au_output_members((*arctxp)->meta) < 0) return SLBT_NESTED_ERROR(dctx); if (dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_SYMBOLS) - if (slbt_ar_output_symbols((*arctxp)->meta) < 0) + if (slbt_au_output_symbols((*arctxp)->meta) < 0) return SLBT_NESTED_ERROR(dctx); if (dctx->cctx->fmtflags & SLBT_OUTPUT_ARCHIVE_MAPFILE) - if (slbt_ar_output_mapfile((*arctxp)->meta) < 0) + if (slbt_au_output_mapfile((*arctxp)->meta) < 0) return SLBT_NESTED_ERROR(dctx); } -- cgit v1.2.3