Message ID | 1437913255-7524-7-git-send-email-tytso@mit.edu (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
This looks fine, but hopefull this file will be gone for the next major release anyway. -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/libdisk/evms.c b/libdisk/evms.c index 4c22ee1..7d41af6 100644 --- a/libdisk/evms.c +++ b/libdisk/evms.c @@ -22,6 +22,7 @@ #include <fcntl.h> #include <sys/ioctl.h> #include <sys/sysmacros.h> +#include <sys/stat.h> #include <disk/volume.h> #include "evms.h"
In libdisk/evms.c, fields from struct stat are used without including <stat.h>. Apparently stat.h is included indirectly in glibc's header files; not so in Android's bionic libc. Signed-off-by: Theodore Ts'o <tytso@mit.edu> --- libdisk/evms.c | 1 + 1 file changed, 1 insertion(+)