Skip to content

Commit

Permalink
[fix] platform/windows: include some headers properly
Browse files Browse the repository at this point in the history
  • Loading branch information
nikp123 committed Aug 25, 2020
1 parent ae22b20 commit 25f12e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

// inode watching is a Linux(TM) feature
// so watch out when you're compiling it
#ifdef __linux__
#if defined(__linux__)||defined(WIN)
#include "misc/inode_watcher.h"
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/xava.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#include <iniparser.h>
#endif

#ifdef __linux__
#if defined(__linux__)||defined(WIN)
#include "misc/inode_watcher.h"
#endif

Expand Down

0 comments on commit 25f12e5

Please sign in to comment.