Skip to content

Commit

Permalink
Fix keystr string name
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Schuchart <[email protected]>
  • Loading branch information
devreal committed Jan 19, 2024
1 parent f9900fe commit d42cb92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttg/ttg/parsec/ttg.h
Original file line number Diff line number Diff line change
Expand Up @@ -3528,7 +3528,7 @@ ttg::abort(); // should not happen
} else {
std::stringstream ss;
ss << task->key;
snprintf(reinterpret_cast<char*>(dst), size, "%s", keystr.str().c_str());
snprintf(reinterpret_cast<char*>(dst), size, "%s", ss.str().c_str());
}
return dst;
}
Expand Down

0 comments on commit d42cb92

Please sign in to comment.