On 05/20/2011 09:21 AM, Sergio Pascual wrote: > I can take > > cfitsio
Thanks. I've added myself to cfitsio as well since some of my packages depend on it. -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane [email protected] Boulder, CO 80301 http://www.cora.nwra.com -- devel mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/devel From [email protected] Fri May 20 08:36:26 2011 Return-path: <[email protected]> Envelope-to: [email protected] Delivery-date: Fri, 20 May 2011 08:36:26 -0700 Received: from exprod5mx269.postini.com ([64.18.0.92] helo=psmtp.com) by mail-archive.com with smtp (Exim 4.69) (envelope-from <[email protected]>) id 1QNRkY-0006ox-1a for [email protected]; Fri, 20 May 2011 08:36:26 -0700 Received: from gabe.freedesktop.org ([131.252.210.177]) by exprod5mx269.postini.com ([64.18.4.10]) with SMTP; Fri, 20 May 2011 08:36:25 PDT Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A716D9E709 for <[email protected]>; Fri, 20 May 2011 08:36:24 -0700 (PDT) X-Original-To: [email protected] Delivered-To: [email protected] Received: from glenfiddich.mraw.org (glenfiddich.mraw.org [88.191.124.82]) by gabe.freedesktop.org (Postfix) with ESMTP id C4AAA9EAF4 for <[email protected]>; Fri, 20 May 2011 08:35:43 -0700 (PDT) Received: from home.mraw.org ([88.164.242.219] helo=kitty) by glenfiddich.mraw.org with esmtp (Exim 4.69) (envelope-from <[email protected]>) id 1QNRjr-0006pH-1B; Fri, 20 May 2011 17:35:43 +0200 Received: from kibi by kitty with local (Exim 4.72) (envelope-from <[email protected]>) id 1QNRjq-0005tH-T3; Fri, 20 May 2011 17:35:42 +0200 From: Cyril Brulebois <[email protected]> To: [email protected] Subject: [PATCH 02/30] dix: Stop setting oldMaster for nothing. Date: Fri, 20 May 2011 17:35:12 +0200 Message-Id: <[email protected]> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <[email protected]> References: <[email protected]> Cc: Cyril Brulebois <[email protected]> X-BeenThere: [email protected] X-Mailman-Version: 2.1.11 Precedence: list List-Id: "X.Org development list" <xorg-devel.lists.x.org> List-Unsubscribe: <http://lists.x.org/mailman/options/xorg-devel>, <mailto:[email protected]?subject=unsubscribe> List-Archive: <http://lists.x.org/archives/xorg-devel> List-Post: <mailto:[email protected]> List-Help: <mailto:[email protected]?subject=help> List-Subscribe: <http://lists.x.org/mailman/listinfo/xorg-devel>, <mailto:[email protected]?subject=subscribe> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: [email protected] Errors-To: [email protected] X-pstn-levels: (S:99.90000/99.90000 CV:99.9000 FC:95.5390 LC:95.5390 R:95.9108 P:95.9108 M:97.0282 C:98.6951 ) X-pstn-settings: 4 (1.5000:1.5000) s cv gt3 gt2 gt1 r p m c X-pstn-addresses: from <[email protected]> [294/10] Signed-off-by: Cyril Brulebois <[email protected]> --- dix/devices.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/dix/devices.c b/dix/devices.c index 9a4498b..36a3167 100644 --- a/dix/devices.c +++ b/dix/devices.c @@ -2415,7 +2415,6 @@ int AttachDevice(ClientPtr client, DeviceIntPtr dev, DeviceIntPtr master) { ScreenPtr screen; - DeviceIntPtr oldmaster; if (!dev || IsMaster(dev)) return BadDevice; @@ -2434,7 +2433,6 @@ AttachDevice(ClientPtr client, DeviceIntPtr dev, DeviceIntPtr master) free(dev->spriteInfo->sprite); } - oldmaster = GetMaster(dev, MASTER_ATTACHED); dev->master = master; /* If device is set to floating, we need to create a sprite for it, -- 1.7.5.1 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
