summaryrefslogtreecommitdiff
path: root/roadveh_cmd.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-02-01 09:08:25 +0000
committerpeter1138 <peter1138@openttd.org>2006-02-01 09:08:25 +0000
commit80952253c2e8141d1933b8af7bf163c68e8224ef (patch)
tree39de152f478744b74706e56ebbe881c23a44e950 /roadveh_cmd.c
parent84fb96fe85e75b038b527471428189170021f8b7 (diff)
downloadopenttd-80952253c2e8141d1933b8af7bf163c68e8224ef.tar.xz
(svn r3512) Yet more whitespace fixes (mostly by Rubidium)
Diffstat (limited to 'roadveh_cmd.c')
-rw-r--r--roadveh_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c
index 515faac57..0ee646ae6 100644
--- a/roadveh_cmd.c
+++ b/roadveh_cmd.c
@@ -944,7 +944,7 @@ static int PickRandomBit(uint bits)
num = RandomRange(num);
- for(i=0; !((bits & 1) && ((int)--num) < 0); bits>>=1,i++);
+ for (i = 0; !((bits & 1) && ((int)--num) < 0); bits >> = 1, i++);
return i;
}