From 9589a98d40c956e6a7607900dd088c12e2e2615e Mon Sep 17 00:00:00 2001 From: X7123M3-256 Date: Sat, 27 Feb 2016 13:13:15 +0000 Subject: [PATCH] Added even more spaces --- src/object.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/object.c b/src/object.c index 5431d987f4..ea4ea68421 100644 --- a/src/object.c +++ b/src/object.c @@ -212,7 +212,7 @@ int write_object_file(SDL_RWops *rw, rct_object_entry* entry) //Check if content of object file matches the stored checksum. If it does not, then fix it. int calculated_checksum = object_calculate_checksum(entry, chunk, installed_entry->chunk_size); - if(entry->checksum != calculated_checksum){ + if(entry->checksum != calculated_checksum) { //Store the current length of the header - it's the offset at which we will write the extra bytes int salt_offset = chunkHeader.length; /*Allocate a new chunk 11 bytes longer. @@ -280,7 +280,7 @@ int object_load_packed(SDL_RWops* rw) if (object_calculate_checksum(&entry, chunk, chunkSize) != entry.checksum){ - if(gConfigGeneral.allow_loading_with_incorrect_checksum){ + if(gConfigGeneral.allow_loading_with_incorrect_checksum) { log_warning("Checksum mismatch from packed object: %.8s", entry.name); } else { log_error("Checksum mismatch from packed object: %.8s", entry.name);