From e3a969f9878872170d9fb94b10ce552dcb88bc9f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sun, 5 Mar 2023 14:08:45 +0000 Subject: [PATCH] libmount: inhibit warning about mask being unused --- libmount/src/optlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmount/src/optlist.c b/libmount/src/optlist.c index acdf47150a..8b771b7037 100644 --- a/libmount/src/optlist.c +++ b/libmount/src/optlist.c @@ -851,7 +851,7 @@ int mnt_optlist_get_attrs(struct libmnt_optlist *ls, uint64_t *set, uint64_t *cl int mnt_optlist_get_attrs(struct libmnt_optlist *ls __attribute__((__unused__)), uint64_t *set __attribute__((__unused__)), uint64_t *clr __attribute__((__unused__)), - int mask) + int mask __attribute__((__unused__))) { return 0; } -- 2.47.3