miscellaneous fixes for warnings from -Wconversion

This commit is contained in:
Paul Davis 2022-07-04 22:01:25 -06:00
parent 811f625623
commit 0d70be3a05
11 changed files with 36 additions and 34 deletions

View file

@ -62,7 +62,7 @@ PBD::stacktrace (std::ostream& out, int levels, size_t start)
if (start == 0) {
out << "-- Stacktrace Thread: " << pthread_name () << std::endl;
}
strings = backtrace_symbols (array, size);
strings = backtrace_symbols (array, (int) size);
if (strings) {