We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e835e6f commit 32168e1Copy full SHA for 32168e1
compiler-rt/test/hwasan/TestCases/Posix/dlerror.cpp
@@ -21,8 +21,8 @@ int main(int argc, char **argv) {
21
for (int i = 0; i < kKeys; ++i) {
22
assert(pthread_key_create(&keys[i], nullptr) == 0);
23
}
24
- void* o = dlopen("invalid_file_name.so", 0);
25
- const char* err = dlerror();
+ void *o = dlopen("invalid_file_name.so", 0);
+ const char *err = dlerror();
26
27
assert(pthread_key_delete(keys[i]) == 0);
28
0 commit comments