svn commit: r305466 - stable/9/sys/boot/i386/libi386
Andriy Gapon
avg at FreeBSD.org
Tue Sep 6 08:14:57 UTC 2016
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>
More information about the svn-src-stable-9
mailing list