mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Fix 'samples / frames' typo in PBD::stacktrace()
This commit is contained in:
parent
9712501139
commit
a4449aa0f6
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ PBD::stacktrace (std::ostream& out, int)
|
|||
|
||||
for (i = 0; i < frames; ++i) {
|
||||
SymFromAddr (process, (DWORD64)(stack[i]), 0, symbol);
|
||||
out << string_compose ("%1: %2 - %3\n", samples - i - 1, symbol->Name, symbol->Address);
|
||||
out << string_compose ("%1: %2 - %3\n", frames - i - 1, symbol->Name, symbol->Address);
|
||||
}
|
||||
|
||||
out.flush ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue