From 52580daf825f495e4f205a80b28ea2681082f8c2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:26:46 -0500 Subject: [PATCH] spelling: pathological Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/settings/settings_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/services/normal/settings/settings_file.c b/src/fw/services/normal/settings/settings_file.c index 4ad49a7a..2143fecd 100644 --- a/src/fw/services/normal/settings/settings_file.c +++ b/src/fw/services/normal/settings/settings_file.c @@ -41,7 +41,7 @@ static status_t prv_open(SettingsFile *file, const char *name, uint8_t flags, in // max_space_total == max_used_space, then if the file is full, changing a // single value would force the whole file to be rewritten- every single // time! It's probably worth it to "waste" a bit of flash space to avoid - // this pathalogical case. + // this pathological case. int max_space_total = pfs_sector_optimal_size(max_used_space * 12 / 10, strlen(name)); // TODO: Dynamically sized files?