From patchwork Wed Aug 8 06:32:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yi Sun X-Patchwork-Id: 1293111 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id CD0ADDF223 for ; Wed, 8 Aug 2012 08:01:13 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AFCBF9F001 for ; Wed, 8 Aug 2012 01:01:13 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTP id 33FD79E8B6 for ; Tue, 7 Aug 2012 23:33:38 -0700 (PDT) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 07 Aug 2012 23:33:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.77,731,1336374000"; d="scan'208";a="183015334" Received: from sunyi-pc.sh.intel.com ([10.239.13.42]) by orsmga002.jf.intel.com with ESMTP; 07 Aug 2012 23:33:37 -0700 From: Yi Sun To: daniel.vetter@ffwll.ch Date: Wed, 8 Aug 2012 14:32:04 +0800 Message-Id: <1344407524-29360-1-git-send-email-yi.sun@intel.com> X-Mailer: git-send-email 1.7.6.4 Cc: intel-gfx@lists.freedesktop.org Subject: [Intel-gfx] [PATCH v2] tests/testdisplay.c Remove an uncomfortable error output X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Signed-off-by: Yi Sun diff --git a/tests/testdisplay.c b/tests/testdisplay.c index 4430d07..14d7da3 100644 --- a/tests/testdisplay.c +++ b/tests/testdisplay.c @@ -358,9 +358,6 @@ static void paint_image(cairo_t *cr, const char *file) cairo_translate(cr, img_x, img_y); - fprintf(stderr, "drew %dx%d image at %d,%d\n", img_w, img_h, - img_x, img_y); - img_w_scale = (double)img_w / (double)img_w_o; img_h_scale = (double)img_h / (double)img_h_o; cairo_scale(cr, img_w_scale, img_h_scale);