diff options
author | midipix <writeonce@midipix.org> | 2024-05-26 15:13:45 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-26 15:13:45 +0000 |
commit | 537964d9b5819245e8760117fbd9984d23c05721 (patch) | |
tree | b62aa297070ade284b245f9a8650aaa6abcdcf11 /src | |
parent | 0ee4a827bc3b3a71234df5c44288d15ad697b724 (diff) | |
download | tpax-537964d9b5819245e8760117fbd9984d23c05721.tar.bz2 tpax-537964d9b5819245e8760117fbd9984d23c05721.tar.xz |
library api's: _api_ (package information) namespace overhaul.
Diffstat (limited to 'src')
-rw-r--r-- | src/driver/tpax_amain.c | 2 | ||||
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/driver/tpax_amain.c b/src/driver/tpax_amain.c index 0ec20f4..61f53d1 100644 --- a/src/driver/tpax_amain.c +++ b/src/driver/tpax_amain.c @@ -38,7 +38,7 @@ static ssize_t tpax_version(struct tpax_driver_ctx * dctx, int fdout) const struct tpax_source_version * verinfo; const char * const * verclr; - verinfo = tpax_source_version(); + verinfo = tpax_api_source_version(); verclr = isatty(fdout) ? tpax_ver_color : tpax_ver_plain; return tpax_dprintf( diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c index f573523..8ab684d 100644 --- a/src/driver/tpax_driver_ctx.c +++ b/src/driver/tpax_driver_ctx.c @@ -609,7 +609,7 @@ void tpax_lib_free_driver_ctx(struct tpax_driver_ctx * ctx) } } -const struct tpax_source_version * tpax_source_version(void) +const struct tpax_source_version * tpax_api_source_version(void) { return &tpax_src_version; } |