From commits-return-4139-archive-asf-public=cust-asf.ponee.io@nuttx.apache.org Sat Mar 7 19:10:20 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 46D2C18025F for ; Sat, 7 Mar 2020 20:10:20 +0100 (CET) Received: (qmail 61420 invoked by uid 500); 7 Mar 2020 19:10:19 -0000 Mailing-List: contact commits-help@nuttx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nuttx.apache.org Delivered-To: mailing list commits@nuttx.apache.org Received: (qmail 61411 invoked by uid 99); 7 Mar 2020 19:10:19 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Mar 2020 19:10:19 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 4BE228DACA; Sat, 7 Mar 2020 19:10:19 +0000 (UTC) Date: Sat, 07 Mar 2020 19:10:19 +0000 To: "commits@nuttx.apache.org" Subject: [incubator-nuttx] branch pr478 updated: nxglib: Remove warning "Assuming 24-bit color is not packed" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158360821905.26841.4983644550276519725@gitbox.apache.org> From: acassis@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-nuttx X-Git-Refname: refs/heads/pr478 X-Git-Reftype: branch X-Git-Oldrev: 553585a0008778fb2157c8fd6d0959d0fe908fc9 X-Git-Newrev: 5ef75c7c5a6fda3d2ffff0ff7f0182a622d7f2c9 X-Git-Rev: 5ef75c7c5a6fda3d2ffff0ff7f0182a622d7f2c9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch pr478 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/pr478 by this push: new 5ef75c7 nxglib: Remove warning "Assuming 24-bit color is not packed" 5ef75c7 is described below commit 5ef75c7c5a6fda3d2ffff0ff7f0182a622d7f2c9 Author: Xiang Xiao AuthorDate: Sun Mar 8 00:39:06 2020 +0800 nxglib: Remove warning "Assuming 24-bit color is not packed" Signed-off-by: Xiang Xiao --- graphics/nxglib/nxglib_fillrun.h | 1 - 1 file changed, 1 deletion(-) diff --git a/graphics/nxglib/nxglib_fillrun.h b/graphics/nxglib/nxglib_fillrun.h index 6e1bb3f..7130993 100644 --- a/graphics/nxglib/nxglib_fillrun.h +++ b/graphics/nxglib/nxglib_fillrun.h @@ -164,7 +164,6 @@ static inline void nxgl_fillrun_24bpp(FAR uint32_t *run, nxgl_mxpixel_t color, s { /* Fill the run with the color (it is okay to run a fractional byte overy the end */ -#warning "Assuming 24-bit color is not packed" while (npixels-- > 0) { *run++ = (uint32_t)color;