Skip to content

Commit

Permalink
Moved star to correct part of declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
gbMattN committed Nov 19, 2024
1 parent a05b828 commit 34bd2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler-rt/test/tsan/many_held_mutex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
int main(int argc, char *argv[]) {
int num_of_mtx = std::stoi(argv[1]);

std::mutex* mutexes = new std::mutex[num_of_mtx];
std::mutex *mutexes = new std::mutex[num_of_mtx];

for (int i = 0; i < num_of_mtx; i++) {
mutexes[i].lock();
Expand Down

0 comments on commit 34bd2a5

Please sign in to comment.