From bcfc900fe15df3ca4e139133058ef85315edcb3c Mon Sep 17 00:00:00 2001 From: "sonika.rathi" Date: Tue, 17 Mar 2026 15:27:59 +0100 Subject: [PATCH] fix(fatfs): remove incorrect retval description from void ff_mutex_delete --- components/fatfs/port/freertos/ffsystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fatfs/port/freertos/ffsystem.c b/components/fatfs/port/freertos/ffsystem.c index 14f5bcb22d8..5e1549b04cd 100644 --- a/components/fatfs/port/freertos/ffsystem.c +++ b/components/fatfs/port/freertos/ffsystem.c @@ -138,7 +138,7 @@ int ff_mutex_create ( /* Returns 1:Function succeeded or 0:Could not create the / semaphore of the volume created with ff_mutex_create function. */ -void ff_mutex_delete ( /* Returns 1:Function succeeded or 0:Could not delete due to an error */ +void ff_mutex_delete ( int vol /* Mutex ID: Volume mutex (0 to FF_VOLUMES - 1) or system mutex (FF_VOLUMES) */ ) {