summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-08-13 15:48:37 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-08-13 15:49:16 (GMT)
commit5da49be25864b432818c833b94c582b37d63b305 (patch)
tree19ab173d9f018c09cdcfeba6b8b1821fb6417951 /src
parent04633c970efde3b96d79866b4b506235a034125c (diff)
downloadhdf5-5da49be25864b432818c833b94c582b37d63b305.zip
hdf5-5da49be25864b432818c833b94c582b37d63b305.tar.gz
hdf5-5da49be25864b432818c833b94c582b37d63b305.tar.bz2
Remove extra parens
Diffstat (limited to 'src')
-rw-r--r--src/H5PL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 71ff0f8..c383cfb 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -103,7 +103,7 @@ typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void);
#define H5PL_HANDLE void *
/* Get a handle to a plugin library. Windows: TEXT macro handles Unicode strings */
-#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY | RTLD_LOCAL))
+#define H5PL_OPEN_DLIB(S) dlopen(S, RTLD_LAZY | RTLD_LOCAL)
/* Get the address of a symbol in dynamic library */
#define H5PL_GET_LIB_FUNC(H,N) dlsym(H,N)