diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-18 18:01:42 +0000 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-01-20 13:36:23 +0100 |
commit | 80c71a241ae3cd3b89527865ba730b2fa1f9e46f (patch) | |
tree | 7d318eae350d06e17d0e267683297ecd52e18cb7 /qemu-img.c | |
parent | a174da3613f548d58433f64cf3c99dd302c6154a (diff) | |
download | qemu-80c71a241ae3cd3b89527865ba730b2fa1f9e46f.tar.gz qemu-80c71a241ae3cd3b89527865ba730b2fa1f9e46f.tar.bz2 qemu-80c71a241ae3cd3b89527865ba730b2fa1f9e46f.zip |
block: Clean up includes
Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.
This commit was created with scripts/clean-includes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-img.c')
-rw-r--r-- | qemu-img.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-img.c b/qemu-img.c index 67739439c5..33e451c101 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -21,6 +21,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#include "qemu/osdep.h" #include "qapi-visit.h" #include "qapi/qmp-output-visitor.h" #include "qapi/qmp/qerror.h" @@ -28,7 +29,6 @@ #include "qemu-common.h" #include "qemu/option.h" #include "qemu/error-report.h" -#include "qemu/osdep.h" #include "sysemu/sysemu.h" #include "sysemu/block-backend.h" #include "block/block_int.h" |