From patchwork Fri Feb 6 19:42:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 5794371 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 32129BF440 for ; Fri, 6 Feb 2015 19:42:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7DCA620123 for ; Fri, 6 Feb 2015 19:42:36 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 9314A200E1 for ; Fri, 6 Feb 2015 19:42:35 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D90246E33D; Fri, 6 Feb 2015 11:42:34 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-we0-f178.google.com (mail-we0-f178.google.com [74.125.82.178]) by gabe.freedesktop.org (Postfix) with ESMTP id 7BE726E33D for ; Fri, 6 Feb 2015 11:42:34 -0800 (PST) Received: by mail-we0-f178.google.com with SMTP id k48so15677984wev.9 for ; Fri, 06 Feb 2015 11:42:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=T3OCOXM0MDi8vK34FqjEt4INxeF/lpCdZSYh/io0aqY=; b=UVUAroYgAyvZL55nHAZvxGQGRva4Z+CUz7I6px4YX+07VWYY0MWGmHIfPIEq32+Di0 zuNonmsP5Eonm5SSUKkwVaz8hs2lcTZdBA0hrIlVIXTzEAZCFFnFWbMJz1FFXCyWMFdQ 01z5upL8oYE+B0XoZ2d72y7FdnPb6U1u6VKvr5VXFcBYqNJQp+yXWJDzQjKF2Vs4ART1 fpVzxgYej7yal+c5K5cD8FVwgXoZ6/cRESW3VK+1lns3fx1kB3KpVj8HoOBVv2biIApR XGWr4m76jPdl0cTqwa28G9wV3/38JFwMMANbyHMfQD1ec6Zd9XlONnORag+0YpVVJmd2 cpaw== X-Received: by 10.194.63.16 with SMTP id c16mr11150468wjs.117.1423251748886; Fri, 06 Feb 2015 11:42:28 -0800 (PST) Received: from arch-laptop.localdomain (cpc12-croy20-2-0-cust52.croy.cable.virginm.net. [82.44.54.53]) by mx.google.com with ESMTPSA id u17sm2757950wij.2.2015.02.06.11.42.27 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 06 Feb 2015 11:42:28 -0800 (PST) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 2/2] util: silence pointer arithmetic warnings Date: Fri, 6 Feb 2015 19:42:02 +0000 Message-Id: <1423251722-26176-2-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1423251722-26176-1-git-send-email-emil.l.velikov@gmail.com> References: <1422557230-22155-1-git-send-email-emil.l.velikov@gmail.com> <1423251722-26176-1-git-send-email-emil.l.velikov@gmail.com> Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Emil Velikov --- tests/util/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/util/Makefile.am b/tests/util/Makefile.am index aaaf932..1d71c40 100644 --- a/tests/util/Makefile.am +++ b/tests/util/Makefile.am @@ -6,7 +6,8 @@ AM_CPPFLAGS = \ AM_CFLAGS = \ $(CAIRO_CFLAGS) \ - $(WARN_CFLAGS) + $(filter-out -Wpointer-arith, $(WARN_CFLAGS)) + noinst_LTLIBRARIES = \ libutil.la