]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
strv: constify arguments for strv_equal_ignore_order()
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 11 Apr 2025 00:57:07 +0000 (09:57 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 12 Apr 2025 19:59:26 +0000 (04:59 +0900)
Follow-up for 5072f4268b89a71e47e59c434da0222f722c7f0e.

src/basic/strv.c
src/basic/strv.h

index a4ddaa5e78fc0adaed08e5625225b5b6181892ff..6a2ff09cbdc1bd7ffacff0aa33fd2f8bb5ecf15d 100644 (file)
@@ -861,7 +861,7 @@ int strv_compare(char * const *a, char * const *b) {
         return 0;
 }
 
-bool strv_equal_ignore_order(char **a, char **b) {
+bool strv_equal_ignore_order(char * const *a, char * const *b) {
 
         /* Just like strv_equal(), but doesn't care about the order of elements or about redundant entries
          * (i.e. it's even ok if the number of entries in the array differ, as long as the difference just
index 71aae2b20a84e95d784326522faafd12426ec0f3..0ca90087b423bf9e3af8ffc23aee4b224de9d2e6 100644 (file)
@@ -96,7 +96,7 @@ static inline bool strv_equal(char * const *a, char * const *b) {
         return strv_compare(a, b) == 0;
 }
 
-bool strv_equal_ignore_order(char **a, char **b);
+bool strv_equal_ignore_order(char * const *a, char * const *b);
 
 char** strv_new_internal(const char *x, ...) _sentinel_;
 char** strv_new_ap(const char *x, va_list ap);