summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/files.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/files.h')
-rw-r--r--crawl-ref/source/files.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/files.h b/crawl-ref/source/files.h
index 93749c6a36..64589b4902 100644
--- a/crawl-ref/source/files.h
+++ b/crawl-ref/source/files.h
@@ -124,8 +124,8 @@ public:
void go_to(const level_id &level);
};
-void save_ghost( bool force = false );
-bool load_ghost( bool creating_level );
+void save_ghost(bool force = false);
+bool load_ghost(bool creating_level);
std::string get_level_filename(const level_id& lid);
@@ -134,12 +134,12 @@ void lk_close(FILE *handle, const char *mode, const std::string &file);
// file locking stuff
#ifdef USE_FILE_LOCKING
-bool lock_file_handle( FILE *handle, int type );
-bool unlock_file_handle( FILE *handle );
+bool lock_file_handle(FILE *handle, int type);
+bool unlock_file_handle(FILE *handle);
#endif // USE_FILE_LOCKING
#ifdef SHARED_FILES_CHMOD_PRIVATE
-#define DO_CHMOD_PRIVATE(x) chmod( (x), SHARED_FILES_CHMOD_PRIVATE )
+#define DO_CHMOD_PRIVATE(x) chmod((x), SHARED_FILES_CHMOD_PRIVATE)
#else
#define DO_CHMOD_PRIVATE(x) // empty command
#endif