Date: Tue, 6 Sep 2016 08:14:56 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r305466 - stable/9/sys/boot/i386/libi386 Message-ID: <201609060814.u868EuZq032147@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609060814.u868EuZq032147>