From: Rich Felker Date: Tue, 20 Sep 2011 15:16:27 +0000 (-0400) Subject: fix the fsid_t structure to match name of __val X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=32b82cf5cdc282839cc02c57a50c991e376f0348 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. --- 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