From owner-svn-src-head@FreeBSD.ORG Mon Apr 27 07:38:47 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37CFD81E; Mon, 27 Apr 2015 07:38:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 276421C9E; Mon, 27 Apr 2015 07:38:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3R7clpJ079522; Mon, 27 Apr 2015 07:38:47 GMT (envelope-from scottl@FreeBSD.org) Received: (from scottl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3R7clxV079521; Mon, 27 Apr 2015 07:38:47 GMT (envelope-from scottl@FreeBSD.org) Message-Id: <201504270738.t3R7clxV079521@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: scottl set sender to scottl@FreeBSD.org using -f From: Scott Long Date: Mon, 27 Apr 2015 07:38:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282064 - head/sys/boot/common X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2015 07:38:47 -0000 Author: scottl Date: Mon Apr 27 07:38:46 2015 New Revision: 282064 URL: https://svnweb.freebsd.org/changeset/base/282064 Log: Small change in header order to allow this to compile. Obtained from: Netflix, Inc. MFC after: 3 days Modified: head/sys/boot/common/md.c Modified: head/sys/boot/common/md.c ============================================================================== --- head/sys/boot/common/md.c Mon Apr 27 07:37:48 2015 (r282063) +++ head/sys/boot/common/md.c Mon Apr 27 07:38:46 2015 (r282064) @@ -27,11 +27,11 @@ #include __FBSDID("$FreeBSD$"); +#include #include #include #include #include -#include #include "bootstrap.h"