You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@aowenson: if you fork the repository, then push the branch in your own fork, you can submit a PR to the main perf-dump repo here. You don't need write access to do this.
The check for whether PDUMP_DUMP_DIR ends with a '/' is faulty. The fix is to replace line 103:
if (!dump_dir_str[back] == '/') {
... with this:
if (dump_dir_str[back] != '/') {
... in perf_dump.C.
The text was updated successfully, but these errors were encountered: