From patchwork Thu Aug 29 20:31:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Emil Velikov X-Patchwork-Id: 2851797 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.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 3AEA3C0AB5 for ; Fri, 30 Aug 2013 05:27:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2290F202A7 for ; Fri, 30 Aug 2013 05:27:42 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id C99D1202A1 for ; Fri, 30 Aug 2013 05:27:40 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A93AFE79ED for ; Thu, 29 Aug 2013 22:27:40 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ee0-f47.google.com (mail-ee0-f47.google.com [74.125.83.47]) by gabe.freedesktop.org (Postfix) with ESMTP id 79E06E790E for ; Thu, 29 Aug 2013 13:32:53 -0700 (PDT) Received: by mail-ee0-f47.google.com with SMTP id d49so495705eek.34 for ; Thu, 29 Aug 2013 13:32:52 -0700 (PDT) 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=UuMyNXrLq7FWRa5E0h7Vqc/Ro4tjZn6NT+ok/rQ2OiA=; b=RAFERO97UrlAe4LG+C0y8EA/KYmrbHUx+zdy4ltIZS9ehQxKAjO8oOjPczVhuPbLf0 cBUg8V903H3vJ6Dle77nLIDPZOB879OObY3LEfxa1+/Ukz6KzEiV08dqp0SAIPjYLlQW 4BJsNFLlJ9euX/OZAWswNimG+22L0iLLDDCiH0h+Uq+6sYD4QCtqlvUbq9MzWPcZ6AGf MXiB2OFFp7UTe+nMj7g5rMLXB0pOn8iz/I98F0HyzaBLMQYOdMz1nndTkB3PS2wYBN2R XGsSHRmaj96Z09OQJicqtN3UYaKw/IRlCj2m1cxBjpO1yj/ANATYmmNiONEKV7uWEk66 cgog== X-Received: by 10.14.4.1 with SMTP id 1mr6817365eei.21.1377808372680; Thu, 29 Aug 2013 13:32:52 -0700 (PDT) Received: from localhost.localdomain (cpc20-stap10-2-0-cust563.12-2.cable.virginmedia.com. [82.20.130.52]) by mx.google.com with ESMTPSA id h52sm49080065eez.3.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 29 Aug 2013 13:32:51 -0700 (PDT) From: Emil Velikov To: dri-devel@lists.freedesktop.org Subject: [PATCH 2/6] tests/*version: add missing string.h header Date: Thu, 29 Aug 2013 21:31:50 +0100 Message-Id: <1377808314-30699-3-git-send-email-emil.l.velikov@gmail.com> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1377808314-30699-1-git-send-email-emil.l.velikov@gmail.com> References: <1377808314-30699-1-git-send-email-emil.l.velikov@gmail.com> X-Mailman-Approved-At: Thu, 29 Aug 2013 22:26:45 -0700 Cc: emil.l.velikov@gmail.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Spam-Status: No, score=-6.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Prodives memset() and strlen(), used in tests/setversion tests/getversion respectively. Signed-off-by: Emil Velikov Reviewed-by: Rob Clark --- tests/getversion.c | 1 + tests/setversion.c | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/getversion.c b/tests/getversion.c index 711d376..53d1d35 100644 --- a/tests/getversion.c +++ b/tests/getversion.c @@ -25,6 +25,7 @@ * */ +#include #include "drmtest.h" /** diff --git a/tests/setversion.c b/tests/setversion.c index 3aaf7cc..5a5d01c 100644 --- a/tests/setversion.c +++ b/tests/setversion.c @@ -26,6 +26,7 @@ */ #include +#include #include "drmtest.h" /**