From 17d77a264ab620b2ac8ff8ae7e820c2ddb83069f Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 30 Jun 2025 08:58:10 -0500 Subject: [PATCH] Clang is persnickety about attribute order. --- lib/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hash.c b/lib/hash.c index e828b30f..16fa1b40 100644 --- a/lib/hash.c +++ b/lib/hash.c @@ -306,7 +306,7 @@ static void hash_update(char *data, unsigned int len, } } -void __attribute__((__weak__)) hash_by_name(int fd, char *name, char *result) +__attribute__((__weak__)) void hash_by_name(int fd, char *name, char *result) { unsigned long long count[2]; int i, chunksize, digestlen, method; -- 2.39.5