From 3e64496acd32209df75cd9c887313662e88a2466 Mon Sep 17 00:00:00 2001 From: jewelcodes Date: Wed, 22 Jan 2025 14:17:55 -0500 Subject: [PATCH] statvfs: fixed typo in struct statvfs --- src/include/sys/statvfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/sys/statvfs.h b/src/include/sys/statvfs.h index 5947d53..afcb0a4 100644 --- a/src/include/sys/statvfs.h +++ b/src/include/sys/statvfs.h @@ -22,7 +22,7 @@ struct statvfs { fsfilcnt_t f_files; fsfilcnt_t f_ffree; fsfilcnt_t f_favail; - unsigned long f_sid; + unsigned long f_fsid; unsigned long f_flag; unsigned long f_namemax; };