You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/12/18 12:32:50 UTC

[incubator-nuttx] 01/02: fs/spiffs/src/spiffs_vfs.c: Fix a typo in a message

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit b4d68feee9a5b12d6e26a5e7d7c550ccd911a6b6
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Dec 18 18:10:46 2020 +0900

    fs/spiffs/src/spiffs_vfs.c: Fix a typo in a message
    
    "page pages" -> "pages"
---
 fs/spiffs/src/spiffs_vfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/spiffs/src/spiffs_vfs.c b/fs/spiffs/src/spiffs_vfs.c
index a56e933..0abf373 100644
--- a/fs/spiffs/src/spiffs_vfs.c
+++ b/fs/spiffs/src/spiffs_vfs.c
@@ -1506,7 +1506,7 @@ static int spiffs_bind(FAR struct inode *mtdinode, FAR const void *data,
         (unsigned int)SPIFFS_GEO_PAGE_SIZE(fs));
   finfo("object lookup pages:         %u\n",
         (unsigned int)SPIFFS_OBJ_LOOKUP_PAGES(fs));
-  finfo("page pages per block:        %u\n",
+  finfo("pages per block:             %u\n",
         (unsigned int)SPIFFS_GEO_PAGES_PER_BLOCK(fs));
   finfo("page header length:          %u\n",
         (unsigned int)sizeof(struct spiffs_page_header_s));