diff options
Diffstat (limited to 'Tests/Dependency/Two/TwoSrc.c')
-rw-r--r-- | Tests/Dependency/Two/TwoSrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Dependency/Two/TwoSrc.c b/Tests/Dependency/Two/TwoSrc.c index 0b3366b..dbdf524 100644 --- a/Tests/Dependency/Two/TwoSrc.c +++ b/Tests/Dependency/Two/TwoSrc.c @@ -3,7 +3,7 @@ void TwoFunction() { static int count = 0; - if( count == 0 ) { + if (count == 0) { ++count; ThreeFunction(); } |