From: Roman Bogorodskiy Date: Sat, 6 Feb 2016 02:26:51 +0000 (+0300) Subject: bhyve: fix preprocessor indentation X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=dcb3d87d789459f5374cfeb2b7050e19fa1ac9ea;p=libvirt.git bhyve: fix preprocessor indentation Syntax-check fails with: cppi: src/bhyve/bhyve_driver.h: line 26: not properly indented cppi: src/bhyve/bhyve_driver.h: line 27: not properly indented maint.mk: incorrect preprocessor indentation Fix by properly indenting '#include's. Pushed as trivial. --- diff --git a/src/bhyve/bhyve_driver.h b/src/bhyve/bhyve_driver.h index a290c4a6c8..fb57d287e1 100644 --- a/src/bhyve/bhyve_driver.h +++ b/src/bhyve/bhyve_driver.h @@ -23,8 +23,8 @@ #ifndef __BHYVE_DRIVER_H__ # define __BHYVE_DRIVER_H__ -#include "capabilities.h" -#include "bhyve_utils.h" +# include "capabilities.h" +# include "bhyve_utils.h" int bhyveRegister(void);