diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-09-05 23:15:41 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-09-05 23:15:55 +0200 |
commit | 3aa60b7ff9587637dcb3e646c2448bf75495a1f4 (patch) | |
tree | 81f6e77f46bebae76659ed2d2dd942b8bb839464 /src/crypto | |
parent | 14eae781881d91f8737a053f0d1dc00dc678e815 (diff) | |
parent | 5abb93f0eefffb5bb31e75a7dd258534cff4b0a0 (diff) |
Merge #11143: Fix include path for bitcoin-config.h
5abb93f0e Fix include path for bitcoin-config.h in crypto/common.h (danra)
Pull request description:
All the other files in the repo which include bitcoin-config.h do so with the appropriate subfolder prefixed: config/bitcoin-config.h
The header should be included with the appropriate subfolder here as well.
Tree-SHA512: abda23a9cf251553f90afe0ee1866de46ed579471f4139737239a4f9334ca817d985deac6336740898718775d1264c0b80cb348668b10a9cae970895f2de37b8
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/common.h b/src/crypto/common.h index bcca3d30ea..bd9bc9420b 100644 --- a/src/crypto/common.h +++ b/src/crypto/common.h @@ -6,7 +6,7 @@ #define BITCOIN_CRYPTO_COMMON_H #if defined(HAVE_CONFIG_H) -#include "bitcoin-config.h" +#include "config/bitcoin-config.h" #endif #include <stdint.h> |