Skip to content

Commit

Permalink
Add missing semicolon in backtrace debug code.
Browse files Browse the repository at this point in the history
Apparently backtrace has not been used for debugging since it was broken in 7fba1f0.

Even though this is test code it might be good to find a way to test it to prevent regressions.
  • Loading branch information
dwsteele committed Sep 17, 2020
1 parent 4cd6115 commit 94475bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/stackTrace.c
Expand Up @@ -52,7 +52,7 @@ static struct StackTraceLocal
static struct StackTraceBackLocal
{
struct backtrace_state *backTraceState; // Backtrace state struct
} stackTraceBackLocal
} stackTraceBackLocal;

void
stackTraceInit(const char *exe)
Expand Down

0 comments on commit 94475bf

Please sign in to comment.