diff options
Diffstat (limited to 'Tests/Dependency/Four/FourSrc.c')
-rw-r--r-- | Tests/Dependency/Four/FourSrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Dependency/Four/FourSrc.c b/Tests/Dependency/Four/FourSrc.c index 23a66a4..4ea996d 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(); } |