]> git.ipfire.org Git - pakfire.git/commitdiff
util: Remove PAKFIRE_EXPORT attribute from pakfire_path_join
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 10 Apr 2021 14:56:19 +0000 (14:56 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 10 Apr 2021 14:56:19 +0000 (14:56 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/util.c

index d149a18c7bcdb9b1bea5aa9d2e0310a22d3b0eea..7c27768f004d6039fa64cedee30f1265dd293c14 100644 (file)
@@ -225,7 +225,7 @@ char* pakfire_format_date(time_t t) {
        return pakfire_strftime("%Y-%m-%d", t);
 }
 
-PAKFIRE_EXPORT int pakfire_path_join(char* dest, size_t length,
+int pakfire_path_join(char* dest, size_t length,
                const char* first, const char* second) {
        if (!second)
                return snprintf(dest, length, "%s", first);