From 40a2adf72058d1cc3fff49c71da3bb80b33559ff Mon Sep 17 00:00:00 2001 From: wanggang26 Date: Wed, 20 Sep 2023 11:27:12 +0800 Subject: [PATCH] procfs: fix a typo Signed-off-by: wanggang26 --- fs/procfs/fs_procfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/procfs/fs_procfs.c b/fs/procfs/fs_procfs.c index e24fd7f6887..276204cd6f8 100644 --- a/fs/procfs/fs_procfs.c +++ b/fs/procfs/fs_procfs.c @@ -490,7 +490,7 @@ static ssize_t procfs_write(FAR struct file *filep, FAR const char *buffer, handler = (FAR struct procfs_file_s *)filep->f_priv; DEBUGASSERT(handler); - /* Call the handler's read routine */ + /* Call the handler's write routine */ if (handler->procfsentry->ops->write) {