summaryrefslogtreecommitdiff
path: root/Tests/Dependency/Four/FourSrc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Dependency/Four/FourSrc.c')
-rw-r--r--Tests/Dependency/Four/FourSrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Dependency/Four/FourSrc.c b/Tests/Dependency/Four/FourSrc.c
index 23a66a49ae..4ea996da59 100644
--- a/Tests/Dependency/Four/FourSrc.c
+++ b/Tests/Dependency/Four/FourSrc.c
@@ -6,7 +6,7 @@ void TwoFunction();
void FourFunction()
{
static int count = 0;
- if( count == 0 ) {
+ if (count == 0) {
++count;
TwoFunction();
}