diff options
author | Ladislav Zezula <E:\Ladik\Mail> | 2015-12-28 10:40:59 +0100 |
---|---|---|
committer | Ladislav Zezula <E:\Ladik\Mail> | 2015-12-28 10:40:59 +0100 |
commit | 7b7c9acce2035c25064be3e83b358001182b8c47 (patch) | |
tree | 9c6a775f6230181f85ef176481692c0c5bac74e5 /src/FileStream.cpp | |
parent | a137849f1780c3047fe43b8fa27f003de2705550 (diff) |
+ Make nitpickers like Krakean happy.
Diffstat (limited to 'src/FileStream.cpp')
-rw-r--r-- | src/FileStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FileStream.cpp b/src/FileStream.cpp index 29a4d33..1e88b63 100644 --- a/src/FileStream.cpp +++ b/src/FileStream.cpp @@ -2821,11 +2821,11 @@ void FileStream_Close(TFileStream * pStream) FileStream_Close(pStream->pMaster);
pStream->pMaster = NULL;
- // Close the stream provider.
+ // Close the stream provider ...
if(pStream->StreamClose != NULL)
pStream->StreamClose(pStream);
- // Also close base stream, if any
+ // ... or close base stream, if any
else if(pStream->BaseClose != NULL)
pStream->BaseClose(pStream);
|