From 9aeff7bc299dff2c37e4453677d32ae442bef29e Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Tue, 22 Oct 2024 10:29:39 -0700 Subject: [PATCH] Fixed whitespace in mz_stream_split_open_disk. --- mz_strm_split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mz_strm_split.c b/mz_strm_split.c index eb7bb7e..a50392c 100644 --- a/mz_strm_split.c +++ b/mz_strm_split.c @@ -105,7 +105,7 @@ static int32_t mz_stream_split_open_disk(void *stream, int32_t number_disk) { /* If disk part doesn't exist during reading then return MZ_EXIST_ERROR */ if (disk_part == MZ_OPEN_MODE_READ) { - if(strcmp(split->path_disk, split->path_cd) == 0) { + if (strcmp(split->path_disk, split->path_cd) == 0) { err = MZ_EXIST_ERROR; } else { err = mz_os_file_exists(split->path_disk);