Skip to content

Commit 6e1bd66

Browse files
committed
test
1 parent 4597de2 commit 6e1bd66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/stacktrace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void print_stacktrace(FILE* output, int start_idx, bool demangling, int maxdepth
6060
fputs("Callstack:\n", output);
6161
bool own_code = false;
6262
char demangle_buffer[2048]= {0};
63-
for (int i = offset; i < maxdepth; ++i) {
63+
for (int i = 0; i < maxdepth; ++i) {
6464
const char * const symbolString = symbolStringList[i];
6565
fprintf(output, "%s\n", symbolString);
6666
continue;

0 commit comments

Comments
 (0)