diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-26 01:10:35 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2022-10-26 01:10:35 +0200 |
commit | b28fa86e6ab633b2d3d9bfdb4642c661ff8c45fc (patch) | |
tree | e3500273bcd79fc9e6389e8dcc626607a2677678 /src/main.cpp | |
parent | Merge pull request #1215 from foxB612/fix-thumbnail-size (diff) | |
download | nheko-b28fa86e6ab633b2d3d9bfdb4642c661ff8c45fc.tar.xz |
Enable -Wconversion
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 83b4657a..3937c6b7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -61,7 +61,7 @@ stacktraceHandler(int signum) // see // https://stackoverflow.com/questions/77005/how-to-automatically-generate-a-stacktrace-when-my-program-crashes/77336#77336 void *array[50]; - size_t size; + int size; // get void*'s for all entries on the stack size = backtrace(array, 50); |