You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2019/10/21 09:30:31 UTC

[mynewt-core] 10/23: Updated function name to correct naming convention.

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

marko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 008eb930bc6dd942f989dfe901c6fdc6243ccb8a
Author: Nolan Lau <no...@juul.com>
AuthorDate: Thu Oct 17 11:38:10 2019 -0700

    Updated function name to correct naming convention.
---
 fs/fcb/src/fcb_getnext.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/fcb/src/fcb_getnext.c b/fs/fcb/src/fcb_getnext.c
index 931432d..2a85597 100644
--- a/fs/fcb/src/fcb_getnext.c
+++ b/fs/fcb/src/fcb_getnext.c
@@ -111,7 +111,7 @@ next_sector:
 }
 
 int
-fcb_getnext_nolock_sector(struct fcb *fcb, struct fcb_entry *loc)
+fcb_getnext_sector_nolock(struct fcb *fcb, struct fcb_entry *loc)
 {
     int rc;
 
@@ -176,7 +176,7 @@ fcb_getnext_sector(struct fcb *fcb, struct fcb_entry *loc)
     if (rc && rc != OS_NOT_STARTED) {
         return FCB_ERR_ARGS;
     }
-    rc = fcb_getnext_nolock_sector(fcb, loc);
+    rc = fcb_getnext_sector_nolock(fcb, loc);
     os_mutex_release(&fcb->f_mtx);
 
     return rc;