Skip to content

Commit 63b833a

Browse files
Format error message for better readability in test_dlopen.c
1 parent 5a432c9 commit 63b833a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/dlopen/test_dlopen.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ int main() {
6868
/* Load the first libnum.so */
6969
libnum = dlopen(LIB_NAME, RTLD_NOW);
7070
if (!libnum) {
71-
fprintf(stderr, "ERROR: Test failed to dlopen libnum.so with %s\n", dlerror());
71+
fprintf(stderr, "ERROR: Test failed to dlopen libnum.so with %s\n",
72+
dlerror());
7273
return -1;
7374
}
7475

0 commit comments

Comments
 (0)