You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/11/10 22:38:52 UTC

[40/50] incubator-mynewt-newt git commit: newt - Fix compile error introduced in a7be46a

newt - Fix compile error introduced in a7be46a


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/56b708d4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/56b708d4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/56b708d4

Branch: refs/heads/master
Commit: 56b708d4ff23017251c0e920120c4a650bcc95bc
Parents: a7be46a
Author: Christopher Collins <cc...@apache.org>
Authored: Tue Nov 8 13:27:51 2016 -0800
Committer: Christopher Collins <cc...@apache.org>
Committed: Tue Nov 8 13:27:51 2016 -0800

----------------------------------------------------------------------
 newt/mfg/meta.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/56b708d4/newt/mfg/meta.go
----------------------------------------------------------------------
diff --git a/newt/mfg/meta.go b/newt/mfg/meta.go
index 8dc4ed5..87aabe0 100644
--- a/newt/mfg/meta.go
+++ b/newt/mfg/meta.go
@@ -182,7 +182,7 @@ func insertMeta(section0Data []byte, flashMap flash.FlashMap) (
 	}
 
 	for _, area := range flashMap.SortedAreas() {
-		if err := writeFlashArea(area, buf); err != nil {
+		if err := writeFlashMapEntry(area, buf); err != nil {
 			return 0, 0, err
 		}
 	}