Skip to content

Commit

Permalink
Fixing more typos within the PAPI perf counters
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Heller committed Sep 18, 2017
1 parent 1f803a7 commit 1120afc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/performance_counters/papi/util/papi.cpp
Expand Up @@ -255,12 +255,12 @@ namespace hpx { namespace performance_counters { namespace papi { namespace util
registers(info),
info.long_descr);

if (strlen((*it)->note) > 0)
if (strlen(info.note) > 0)
{
std::cout << "Note:\n" << (*it)->note << "\n";
std::cout << "Note:\n" << info.note << "\n";
}

std::cout << std::string(79, '-')+'\n');
std::cout << std::string(79, '-')+'\n';
}

void list_native()
Expand Down

0 comments on commit 1120afc

Please sign in to comment.