From c9eeca63ccc3960c0253368147e95fdd61b04fcd Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 26 May 2024 14:18:17 +0000 Subject: library api's: _lib_ (program driver) namespace overhaul. --- src/logic/tpax_archive_write.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/logic/tpax_archive_write.c') diff --git a/src/logic/tpax_archive_write.c b/src/logic/tpax_archive_write.c index 272f9b9..707b288 100644 --- a/src/logic/tpax_archive_write.c +++ b/src/logic/tpax_archive_write.c @@ -67,7 +67,7 @@ static int tpax_archive_write_ret( int ret, struct tpax_unit_ctx * uctx) { - tpax_free_unit_ctx(uctx); + tpax_lib_free_unit_ctx(uctx); return ret; } @@ -97,7 +97,7 @@ static int tpax_archive_write_impl( TPAX_ERR_FLOW_ERROR); /* uctx */ - if (tpax_get_unit_ctx(dctx,fdcwd,path,&uctx) < 0) + if (tpax_lib_get_unit_ctx(dctx,fdcwd,path,&uctx) < 0) return TPAX_NESTED_ERROR(dctx); /* record errors */ @@ -165,7 +165,7 @@ static int tpax_archive_write_impl( /* all done? */ if (!(S_ISREG(uctx->st->st_mode))) { - tpax_free_unit_ctx(uctx); + tpax_lib_free_unit_ctx(uctx); return 0; } -- cgit v1.2.3