Skip to content

Commit

Permalink
maint: Reorder include directives for qemu-{nbd, io}
Browse files Browse the repository at this point in the history
HACKING recommends listing system includes right after osdep.h,
and before any other in-project headers.

Signed-off-by: Eric Blake <[email protected]>
Message-Id: <[email protected]>
  • Loading branch information
ebblake committed Jul 24, 2017
1 parent be37713 commit c2a3d7d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion qemu-img.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
* THE SOFTWARE.
*/
#include "qemu/osdep.h"
#include <getopt.h>

#include "qemu-version.h"
#include "qapi/error.h"
#include "qapi/util.h"
Expand All @@ -43,7 +45,6 @@
#include "block/qapi.h"
#include "crypto/init.h"
#include "trace/control.h"
#include <getopt.h>

#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
"\n" QEMU_COPYRIGHT "\n"
Expand Down
8 changes: 4 additions & 4 deletions qemu-nbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
*/

#include "qemu/osdep.h"
#include <getopt.h>
#include <libgen.h>
#include <pthread.h>

#include "qapi/error.h"
#include "qemu-common.h"
#include "qemu/cutils.h"
Expand All @@ -38,10 +42,6 @@
#include "trace/control.h"
#include "qemu-version.h"

#include <getopt.h>
#include <libgen.h>
#include <pthread.h>

#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
#define QEMU_NBD_OPT_CACHE 256
#define QEMU_NBD_OPT_AIO 257
Expand Down

0 comments on commit c2a3d7d

Please sign in to comment.