Skip to content

Commit

Permalink
Fix order of header file inclusion
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Apr 19, 2024
1 parent ba2b8ce commit c750e8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/mirror_vfd/mirror_writer.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
* file. This is reflected in the source (H5FDmirror.c) of the Mirror driver.
*/

#include "mirror_remote.h"

#ifdef H5_HAVE_MIRROR_VFD

/*
* This file needs to access private information from the H5FD package.
* This file also needs to access the file testing code.
Expand All @@ -29,10 +33,6 @@
#define H5FD_TESTING
#include "H5FDpkg.h" /* File Drivers */

#include "mirror_remote.h"

#ifdef H5_HAVE_MIRROR_VFD

#define HEXDUMP_XMITS 1 /* Toggle whether to print xmit bytes-blob */
/* in detailed logging */
#define HEXDUMP_WRITEDATA 0 /* Toggle whether to print bytes to write */
Expand Down

0 comments on commit c750e8c

Please sign in to comment.