From patchwork Tue Aug 14 11:24:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 957438 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41qVcX6rTxz9s9N; Tue, 14 Aug 2018 21:24:43 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1fpXRG-0007k1-Jq; Tue, 14 Aug 2018 11:24:38 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.86_2) (envelope-from ) id 1fpXRF-0007j4-8o for fwts-devel@lists.ubuntu.com; Tue, 14 Aug 2018 11:24:37 +0000 Received: from 1.general.cking.uk.vpn ([10.172.193.212] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1fpXRE-0001y8-Vs; Tue, 14 Aug 2018 11:24:37 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH 03/13] lib: fwts_deviceytree: make a function argument const and a style change Date: Tue, 14 Aug 2018 12:24:25 +0100 Message-Id: <20180814112435.22166-4-colin.king@canonical.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180814112435.22166-1-colin.king@canonical.com> References: <20180814112435.22166-1-colin.king@canonical.com> MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" From: Colin Ian King Make argument 'len' in function check_property_printable const. Also make one minor white space code style change. Signed-off-by: Colin Ian King Acked-by: Alex Hung Acked-by: Ivan Hu --- src/lib/src/fwts_devicetree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/src/fwts_devicetree.c b/src/lib/src/fwts_devicetree.c index 4ab39d02..0669561c 100644 --- a/src/lib/src/fwts_devicetree.c +++ b/src/lib/src/fwts_devicetree.c @@ -99,7 +99,7 @@ bool check_status_property_okay(fwts_framework *fw, int check_property_printable(fwts_framework *fw, const char *name, const char *buf, - size_t len) + const size_t len) { bool printable = true; unsigned int i; @@ -128,7 +128,7 @@ int check_property_printable(fwts_framework *fw, } /* check for a trailing nul */ - if (buf[len-1] != '\0') { + if (buf[len - 1] != '\0') { fwts_failed(fw, LOG_LEVEL_LOW, "DTPrintablePropertyNoNul", "property \"%s\" isn't nul-terminated", name);