Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 42405200BBB for ; Thu, 10 Nov 2016 23:40:55 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 40EE3160B01; Thu, 10 Nov 2016 22:40:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 86A74160AF7 for ; Thu, 10 Nov 2016 23:40:54 +0100 (CET) Received: (qmail 24990 invoked by uid 500); 10 Nov 2016 22:40:53 -0000 Mailing-List: contact commits-help@mynewt.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mynewt.incubator.apache.org Delivered-To: mailing list commits@mynewt.incubator.apache.org Received: (qmail 24981 invoked by uid 99); 10 Nov 2016 22:40:53 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Nov 2016 22:40:53 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 58A39C023E for ; Thu, 10 Nov 2016 22:40:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id ICXfZ60F5_I8 for ; Thu, 10 Nov 2016 22:40:52 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id 30D2A5FE3F for ; Thu, 10 Nov 2016 22:40:46 +0000 (UTC) Received: (qmail 13461 invoked by uid 99); 10 Nov 2016 22:38:14 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Nov 2016 22:38:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8E781EEE2A; Thu, 10 Nov 2016 22:38:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ccollins@apache.org To: commits@mynewt.incubator.apache.org Date: Thu, 10 Nov 2016 22:38:52 -0000 Message-Id: In-Reply-To: <5f91040c064d455e97696b8d24480b71@git.apache.org> References: <5f91040c064d455e97696b8d24480b71@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [40/50] incubator-mynewt-newt git commit: newt - Fix compile error introduced in a7be46a archived-at: Thu, 10 Nov 2016 22:40:55 -0000 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 Authored: Tue Nov 8 13:27:51 2016 -0800 Committer: Christopher Collins 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 } }