libopkg: set 'const' attribute for argv
authorDaniel Golle <daniel@makrotopia.org>
Sun, 9 Jan 2022 20:03:44 +0000 (20:03 +0000)
committerDaniel Golle <daniel@makrotopia.org>
Sun, 9 Jan 2022 20:06:26 +0000 (20:06 +0000)
Just not to make it messier than it already is.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
libopkg/opkg_cmd.c
libopkg/opkg_cmd.h

index b6c45f523cdd06277cb35c87eef7100046c2c5a7..6547775d1a57c762e582675ab12be671792a4147 100644 (file)
@@ -42,7 +42,7 @@
 #include "xsystem.h"
 
 int opkg_cli_argc = 0;
-char **opkg_cli_argv = NULL;
+const char **opkg_cli_argv = NULL;
 
 static void print_pkg(pkg_t * pkg)
 {
index 8831bd367c5881056fd114a43557e7b76a8fae41..c73ec82d07f7be730137ba7ed3e72539f9e310e0 100644 (file)
@@ -33,5 +33,5 @@ int opkg_cmd_exec(opkg_cmd_t * cmd, int argc, const char **argv);
 
 extern int opkg_state_changed;
 extern int opkg_cli_argc;
-extern char **opkg_cli_argv;
+extern const char **opkg_cli_argv;
 #endif