From 5da49be25864b432818c833b94c582b37d63b305 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 13 Aug 2020 10:48:37 -0500 Subject: Remove extra parens --- src/H5PL.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12