1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Add missing semicolon in backtrace debug code.

Apparently backtrace has not been used for debugging since it was broken in 7fba1f0b.

Even though this is test code it might be good to find a way to test it to prevent regressions.
This commit is contained in:
David Steele 2020-09-17 15:17:13 -04:00
parent 4cd61152f5
commit 94475bfbe6

View File

@ -52,7 +52,7 @@ static struct StackTraceLocal
static struct StackTraceBackLocal
{
struct backtrace_state *backTraceState; // Backtrace state struct
} stackTraceBackLocal
} stackTraceBackLocal;
void
stackTraceInit(const char *exe)