summaryrefslogtreecommitdiff
path: root/src/station.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-01-17 20:34:29 +0000
committertron <tron@openttd.org>2007-01-17 20:34:29 +0000
commit0b710695a549960050d876b1a93149586bc393de (patch)
tree59c354392813dddde5c85f27f29997d73f063688 /src/station.h
parent2655cbc3b4d364b9e7ce80a741f8541fe78fecec (diff)
downloadopenttd-0b710695a549960050d876b1a93149586bc393de.tar.xz
(svn r8203) -Fix:
Use initialisers, reduce variable scope, remove spurious whitespace, fix format string to make it readable
Diffstat (limited to 'src/station.h')
-rw-r--r--src/station.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station.h b/src/station.h
index dc86f689f..d7f6246f6 100644
--- a/src/station.h
+++ b/src/station.h
@@ -66,7 +66,7 @@ typedef struct RoadStop {
void *operator new (size_t size, int index);
void operator delete(void *rs, int index);
- static RoadStop *AllocateRaw( void );
+ static RoadStop *AllocateRaw(void);
} RoadStop;
typedef struct StationSpecList {