From e917bf75d911fae3a553b77e64cd4c37984948a8 Mon Sep 17 00:00:00 2001 From: Sergey Nikiforov Date: Sat, 14 Jan 2023 00:15:13 +0500 Subject: vlib: add const to char* params of several funcs These functions do not need modifiable strings. It helps with linker sections as well as C++ compatibility. It is a good style to use const where approriate. Type: refactor Signed-off-by: void234@gmail.com Change-Id: Ib437a01663aa61860c6a938d869ed1111da71ec7 --- src/vlib/unix/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vlib/unix/plugin.c') diff --git a/src/vlib/unix/plugin.c b/src/vlib/unix/plugin.c index 22035927e96..1260089f4ff 100644 --- a/src/vlib/unix/plugin.c +++ b/src/vlib/unix/plugin.c @@ -35,7 +35,7 @@ char *vlib_plugin_app_version __attribute__ ((weak)); char *vlib_plugin_app_version = ""; void * -vlib_get_plugin_symbol (char *plugin_name, char *symbol_name) +vlib_get_plugin_symbol (const char *plugin_name, const char *symbol_name) { plugin_main_t *pm = &vlib_plugin_main; uword *p; -- cgit 1.2.3-korg