mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 04:09:29 +01:00
fix errors in multi-range export (and possibly other export styles); compiler warnings patch from Carl
git-svn-id: svn://localhost/ardour2/trunk@1605 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
3e36907353
commit
2aba860ba1
15 changed files with 55 additions and 66 deletions
|
|
@ -23,7 +23,7 @@ PBD::stacktrace (std::ostream& out, int levels)
|
|||
|
||||
printf ("Obtained %zd stack frames.\n", size);
|
||||
|
||||
for (i = 0; i < size && (levels == 0 || i < levels); i++) {
|
||||
for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
|
||||
out << strings[i] << std::endl;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue