Skip to content

Commit 32168e1

Browse files
committed
fmt
Created using spr 1.3.4
1 parent e835e6f commit 32168e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/test/hwasan/TestCases/Posix/dlerror.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ int main(int argc, char **argv) {
2121
for (int i = 0; i < kKeys; ++i) {
2222
assert(pthread_key_create(&keys[i], nullptr) == 0);
2323
}
24-
void* o = dlopen("invalid_file_name.so", 0);
25-
const char* err = dlerror();
24+
void *o = dlopen("invalid_file_name.so", 0);
25+
const char *err = dlerror();
2626
for (int i = 0; i < kKeys; ++i) {
2727
assert(pthread_key_delete(keys[i]) == 0);
2828
}

0 commit comments

Comments
 (0)