Skip to content

Commit

Permalink
Fix variable declaration in common-src/testutils.h (#150)
Browse files Browse the repository at this point in the history
Added missing 'extern' keyword and changed type to be consistent
with common-src/testutils.c

Signed-off-by: Václav Doležal <[email protected]>
  • Loading branch information
yontalcar authored Sep 22, 2020
1 parent fdd9fb3 commit dae87c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common-src/testutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ typedef struct TestUtilsTest {
#define tu_dbg(...) if (tu_debugging_enabled) { g_fprintf(stderr, __VA_ARGS__); }

/* Is debugging enabled for this test run? (set internally) */
int tu_debugging_enabled;
extern gboolean tu_debugging_enabled;

/*
* Main loop
Expand Down

0 comments on commit dae87c4

Please sign in to comment.