summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/Three/ThreeSrc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Dependency/Three/ThreeSrc.c')
-rw-r--r--Tests/Dependency/Three/ThreeSrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Dependency/Three/ThreeSrc.c b/Tests/Dependency/Three/ThreeSrc.c
index 9c77f17..3e814f3 100644
--- a/Tests/Dependency/Three/ThreeSrc.c
+++ b/Tests/Dependency/Three/ThreeSrc.c
@@ -4,7 +4,7 @@ void FourFunction();
void ThreeFunction()
{
static int count = 0;
- if( count == 0 ) {
+ if (count == 0) {
++count;
FourFunction();
}