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
commitf3daa56208efe9d46aa60e91c44c293d85844601 (patch)
tree59c354392813dddde5c85f27f29997d73f063688 /src/station.h
parent0eb5af76d1fd94d9ac96abd5cf3a223837736eb8 (diff)
downloadopenttd-f3daa56208efe9d46aa60e91c44c293d85844601.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 {