misc: Fix an unused arguments warning
diff --git a/common/fs/file.s2.c b/common/fs/file.s2.c
index 1835e879..70bc822b 100644
--- a/common/fs/file.s2.c
+++ b/common/fs/file.s2.c
@@ -21,6 +21,8 @@ char *fs_get_label(struct volume *part) {
}
bool fs_get_guid(struct guid *guid, struct volume *part) {
+ (void)guid; (void)part;
+
return false;
}
