From a0a6eb784433502990293cdcfd5d67df8501e868 Mon Sep 17 00:00:00 2001 From: Vulpine05 Date: Sun, 22 Oct 2023 09:05:22 -0500 Subject: [PATCH] chore: fix whitepsace --- client/cs_prefs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/cs_prefs.cpp b/client/cs_prefs.cpp index 904d355b26e..be9363a5c07 100644 --- a/client/cs_prefs.cpp +++ b/client/cs_prefs.cpp @@ -685,7 +685,7 @@ void CLIENT_STATE::read_global_prefs( #endif } -// Validates preferences that were parsed. Uses the mask structure, so +// Validates preferences that were parsed. Uses the mask structure, so // this should be called immediately after parsing. This function will check if // any preferences are out of a reasonable range for each variable. This could be // any of the following: @@ -884,7 +884,7 @@ void CLIENT_STATE::validate_global_prefs(const GLOBAL_PREFS_MASK& mask) { } if (mask.disk_max_used_pct) { if (global_prefs.disk_max_used_pct < 0) { - global_prefs.disk_max_used_pct = 90; + global_prefs.disk_max_used_pct = 90; msg_printf(0, MSG_USER_ALERT, "'disk_max_used_pct' %s 90.", outrange); } else if (global_prefs.disk_max_used_pct > 100) { global_prefs.disk_max_used_pct = 100;