]> git.ipfire.org Git - pakfire.git/commitdiff
string: inline must be the first word in a declaration
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 4 Oct 2023 16:08:01 +0000 (16:08 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 4 Oct 2023 16:08:01 +0000 (16:08 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/include/pakfire/string.h

index 3cb8532c4ec9aa013b37ce2aeed5162ed1715538..d5360bf0af738796083f7627c2baf1a4473652b1 100644 (file)
@@ -59,7 +59,7 @@ char* pakfire_string_join(char** list, const char* delim);
        Cleanup Stuff
 */
 
-void inline pakfire_strings_free(char** array) {
+inline void pakfire_strings_free(char** array) {
        for (char** s = array; *s; s++)
                free(*s);