Author: avg Date: Tue Sep 6 08:14:56 2016 New Revision: 305466 URL: https://svnweb.freebsd.org/changeset/base/305466
Log: fix r305459: stdint.h has to be included for uintmax_t Apparently on other branches the type is visible via indirect inclusions. Modified: stable/9/sys/boot/i386/libi386/biosdisk.c Modified: stable/9/sys/boot/i386/libi386/biosdisk.c ============================================================================== --- stable/9/sys/boot/i386/libi386/biosdisk.c Tue Sep 6 06:40:59 2016 (r305465) +++ stable/9/sys/boot/i386/libi386/biosdisk.c Tue Sep 6 08:14:56 2016 (r305466) @@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$"); #include <stand.h> #include <machine/bootinfo.h> #include <stdarg.h> +#include <stdint.h> #include <bootstrap.h> #include <btxv86.h> _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"