mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 13:18:06 -06:00
Merge pull request #16801 from Chocobo1/int
Migrate away from unsigned integer types
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
#include <vector>
|
||||
|
||||
/** Print a demangled stack backtrace of the caller function to FILE* out. */
|
||||
static inline void print_stacktrace(FILE *out = stderr, unsigned int max_frames = 63)
|
||||
static inline void print_stacktrace(FILE *out = stderr, const int max_frames = 63)
|
||||
{
|
||||
fprintf(out, "Stack trace:\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user