diff options
author | Johannes Schickel | 2012-03-17 22:02:16 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-03-17 22:02:44 +0100 |
commit | 223794fb383637944c3b161c04ecc233a354c9ae (patch) | |
tree | d28b6822b93e7ee764c669657368ff38f9b08e97 /backends/fs | |
parent | 2c0bd426fcd2d965ca5f84fde893719ddfc4c37f (diff) | |
download | scummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.tar.gz scummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.tar.bz2 scummvm-rg350-223794fb383637944c3b161c04ecc233a354c9ae.zip |
ALL: Make use of defined() for the preprocessor consistent.
This does not change the use of defined for some NDS source files, since they
seem to be (based on?) third party code.
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index fc78f7580b..7a652fa43c 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#if defined (__SYMBIAN32__) +#if defined(__SYMBIAN32__) #include "backends/fs/symbian/symbian-fs.h" #include "backends/fs/symbian/symbianstream.h" @@ -230,4 +230,4 @@ Common::SeekableReadStream *SymbianFilesystemNode::createReadStream() { Common::WriteStream *SymbianFilesystemNode::createWriteStream() { return SymbianStdioStream::makeFromPath(getPath(), true); } -#endif //#if defined (__SYMBIAN32__) +#endif //#if defined(__SYMBIAN32__) |