From bbd7e809fd59a65f5e0b08683da094d7f8924791 Mon Sep 17 00:00:00 2001 From: X7123M3-256 Date: Sat, 4 Jun 2016 21:36:27 +0100 Subject: [PATCH] Fix whitespace --- src/interface/console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface/console.c b/src/interface/console.c index 53c60e60f9..8d284b6ed3 100644 --- a/src/interface/console.c +++ b/src/interface/console.c @@ -474,13 +474,13 @@ static int cc_rides(const utf8 **argv, int argc) console_printf("No ride entry found for given subtype"); } else { rct_ride *ride = get_ride(ride_index); - if(ride->type != RIDE_TYPE_NULL) { + if (ride->type != RIDE_TYPE_NULL) { ride->type = type; if (int_valid[2]) { ride->subtype = subtype; } } else { - console_printf("No ride found with index %d",ride_index); + console_printf("No ride found with index %d", ride_index); } } }