diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-08-17 10:30:41 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-08-17 10:30:41 +0800 |
commit | 06a8ffae438a61552555ffff930bb92e80398f2b (patch) | |
tree | 9f4e5dd5db16248c0e0e88427d0a44e13a7cc098 | |
parent | 6f89684faa0ee752e901053f7508eb05d158b2eb (diff) | |
download | dexon-bls-06a8ffae438a61552555ffff930bb92e80398f2b.tar.gz dexon-bls-06a8ffae438a61552555ffff930bb92e80398f2b.tar.zst dexon-bls-06a8ffae438a61552555ffff930bb92e80398f2b.zip |
fix typo macro name
-rw-r--r-- | include/bls/bls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bls/bls.h b/include/bls/bls.h index 3e2e719..0592b95 100644 --- a/include/bls/bls.h +++ b/include/bls/bls.h @@ -27,7 +27,7 @@ #endif #elif defined(__EMSCRIPTEN__) && !defined(BLS_DONT_EXPORT) #define BLS_DLL_API __attribute__((used)) -#elif defined(__wasm__) && !defined(MCLBN_DONT_EXPORT) +#elif defined(__wasm__) && !defined(BLS_DONT_EXPORT) #define BLS_DLL_API __attribute__((visibility("default"))) #else #define BLS_DLL_API |