AP_Filesystem: Fix some typos

Fixed some typos found in the code.
This commit is contained in:
Mykhailo Kuznietsov 2023-10-11 18:41:52 +11:00 committed by Peter Barker
parent 7f2975d21a
commit 804d4446d1
1 changed files with 1 additions and 1 deletions

View File

@ -879,7 +879,7 @@ bool AP_Filesystem_FATFS::format(void)
#if FF_USE_MKFS #if FF_USE_MKFS
WITH_SEMAPHORE(sem); WITH_SEMAPHORE(sem);
hal.scheduler->register_io_process(FUNCTOR_BIND_MEMBER(&AP_Filesystem_FATFS::format_handler, void)); hal.scheduler->register_io_process(FUNCTOR_BIND_MEMBER(&AP_Filesystem_FATFS::format_handler, void));
// the format is handled asyncronously, we inform user of success // the format is handled asynchronously, we inform user of success
// via a text message. format_status can be polled for progress // via a text message. format_status can be polled for progress
format_status = FormatStatus::PENDING; format_status = FormatStatus::PENDING;
return true; return true;