We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4597de2 commit 6e1bd66Copy full SHA for 6e1bd66
1 file changed
cli/stacktrace.cpp
@@ -60,7 +60,7 @@ void print_stacktrace(FILE* output, int start_idx, bool demangling, int maxdepth
60
fputs("Callstack:\n", output);
61
bool own_code = false;
62
char demangle_buffer[2048]= {0};
63
- for (int i = offset; i < maxdepth; ++i) {
+ for (int i = 0; i < maxdepth; ++i) {
64
const char * const symbolString = symbolStringList[i];
65
fprintf(output, "%s\n", symbolString);
66
continue;
0 commit comments