summaryrefslogtreecommitdiff
path: root/src/test/test-dlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test-dlopen.c')
-rw-r--r--src/test/test-dlopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-dlopen.c b/src/test/test-dlopen.c
index 151d2d72b..febfc60e0 100644
--- a/src/test/test-dlopen.c
+++ b/src/test/test-dlopen.c
@@ -13,7 +13,7 @@
int main(int argc, char **argv) {
void *handle;
- assert_se((handle = dlopen(argv[1], RTLD_NOW)));
+ assert_se(handle = dlopen(argv[1], RTLD_NOW));
assert_se(dlclose(handle) == 0);
return EXIT_SUCCESS;