From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7167 invoked by alias); 8 Aug 2007 14:01:39 -0000 Received: (qmail 7102 invoked by uid 22791); 8 Aug 2007 14:01:38 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 08 Aug 2007 14:01:28 +0000 Received: from zps38.corp.google.com (zps38.corp.google.com [172.25.146.38]) by smtp-out.google.com with ESMTP id l78E1MBV025152; Wed, 8 Aug 2007 07:01:22 -0700 Received: from smtp.corp.google.com (spacemonkey2.corp.google.com [192.168.120.114]) by zps38.corp.google.com with ESMTP id l78E16xN012044 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 8 Aug 2007 07:01:07 -0700 Received: from localhost.localdomain.google.com (adsl-71-133-8-30.dsl.pltn13.pacbell.net [71.133.8.30]) (authenticated bits=0) by smtp.corp.google.com (8.13.8/8.13.8) with ESMTP id l78E16jv013293 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 8 Aug 2007 07:01:06 -0700 To: Samuel Thibault Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] drop MAXPATHLEN dependency from gcc/tlink.c References: <20070724203941.GE3700@interface.famille.thibault.fr> <20070801210310.GC3667@interface.famille.thibault.fr> From: Ian Lance Taylor Date: Wed, 08 Aug 2007 14:01:00 -0000 In-Reply-To: <20070801210310.GC3667@interface.famille.thibault.fr> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-08/txt/msg00506.txt.bz2 Samuel Thibault writes: > 2007-08-01 Samuel Thibault > > * gcc/tlink.c: Include "libiberty.h" > (initial_cwd): Change type into char*. > (tlink_init): Call getpwd() instead of getcwd(). Omit parentheses after function names in ChangeLog entry. > - getcwd (initial_cwd, sizeof (initial_cwd)); > + initial_cwd = getpwd(); Space before left parenthesis. OK with those changes. Thanks. Ian