Skip to content

Commit

Permalink
Use correct relative include path
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 1, 2021
1 parent 632aca2 commit db18764
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hidapi/libusb/hid.c
Expand Up @@ -40,7 +40,7 @@
#include <libusb.h>
#include <locale.h> /* setlocale */

#include "hidapi.h"
#include "../hidapi/hidapi.h"

#ifdef NAMESPACE
namespace NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion src/hidapi/linux/hid.c
Expand Up @@ -50,7 +50,7 @@
#include <linux/input.h>
#include <libudev.h>

#include "hidapi.h"
#include "../hidapi/hidapi.h"

#ifdef NAMESPACE
namespace NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion src/hidapi/mac/hid.c
Expand Up @@ -33,7 +33,7 @@
#include <sys/time.h>
#include <unistd.h>

#include "hidapi.h"
#include "../hidapi/hidapi.h"

/* Barrier implementation because Mac OSX doesn't have pthread_barrier.
It also doesn't have clock_gettime(). So much for POSIX and SUSv2.
Expand Down

0 comments on commit db18764

Please sign in to comment.