Skip to content

Commit 034b846

Browse files
committed
Remove extra curly brackets
1 parent a9cc028 commit 034b846

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Core/Libraries/Source/Compression/LZHCompress/NoxCompress.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ Bool DecompressFile (char *infile, char *outfile)
4747
// Parameter checking
4848

4949
if (( infile == NULL ) || ( outfile == NULL ))
50-
{
5150
return FALSE;
52-
}
5351

5452
inFilePtr = fopen( infile, "rb" );
5553
if ( inFilePtr )
@@ -136,9 +134,7 @@ Bool CompressFile (char *infile, char *outfile)
136134
// Parameter checking
137135

138136
if (( infile == NULL ) || ( outfile == NULL ))
139-
{
140137
return FALSE;
141-
}
142138

143139
// Allocate the appropriate amount of memory
144140
inFilePtr = fopen( infile, "rb" );

0 commit comments

Comments
 (0)