From 32b82cf5cdc282839cc02c57a50c991e376f0348 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 20 Sep 2011 11:16:27 -0400 Subject: fix the fsid_t structure to match name of __val this is a case of poorly written man pages not matching the actual implementation, and why i hate implementing nonstandard interfaces with no actual documentation of how they're intended to work. --- include/sys/statfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/sys/statfs.h') diff --git a/include/sys/statfs.h b/include/sys/statfs.h index 51ef30a1..05c9b130 100644 --- a/include/sys/statfs.h +++ b/include/sys/statfs.h @@ -4,7 +4,7 @@ #include typedef struct { - int val[2]; + int __val[2]; } fsid_t; #include -- cgit v1.2.1