diff options
author | midipix <writeonce@midipix.org> | 2024-03-10 21:53:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-10 21:54:42 +0000 |
commit | de1405fddd8cb3104c04b1a11524745ec26853ce (patch) | |
tree | 3a1adfc25c51076e5602a95e5c1f780056f7104b /src/internal/slibtool_libmeta_impl.c | |
parent | a07095d89f48e4612aea2b6edd0c3a62ab209892 (diff) | |
download | slibtool-de1405fddd8cb3104c04b1a11524745ec26853ce.tar.bz2 slibtool-de1405fddd8cb3104c04b1a11524745ec26853ce.tar.xz |
slbt_create_library_wrapper(): fix signature (string params are const types).
Diffstat (limited to 'src/internal/slibtool_libmeta_impl.c')
-rw-r--r-- | src/internal/slibtool_libmeta_impl.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/internal/slibtool_libmeta_impl.c b/src/internal/slibtool_libmeta_impl.c index 961a69a..0db0686 100644 --- a/src/internal/slibtool_libmeta_impl.c +++ b/src/internal/slibtool_libmeta_impl.c @@ -18,10 +18,10 @@ static int slbt_create_default_library_wrapper( const struct slbt_driver_ctx * dctx, struct slbt_exec_ctx * ectx, - char * arname, - char * soname, - char * soxyz, - char * solnk) + const char * arname, + const char * soname, + const char * soxyz, + const char * solnk) { int ret; int fdout; @@ -131,10 +131,10 @@ static int slbt_create_default_library_wrapper( static int slbt_create_compatible_library_wrapper( const struct slbt_driver_ctx * dctx, struct slbt_exec_ctx * ectx, - char * arname, - char * soname, - char * soxyz, - char * solnk) + const char * arname, + const char * soname, + const char * soxyz, + const char * solnk) { int ret; int fdout; @@ -270,10 +270,10 @@ static int slbt_create_compatible_library_wrapper( slbt_hidden int slbt_create_library_wrapper( const struct slbt_driver_ctx * dctx, struct slbt_exec_ctx * ectx, - char * arname, - char * soname, - char * soxyz, - char * solnk) + const char * arname, + const char * soname, + const char * soxyz, + const char * solnk) { if (dctx->cctx->drvflags & SLBT_DRIVER_LEGABITS) return slbt_create_compatible_library_wrapper( |