From patchwork Wed Feb 8 22:21:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 140276 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 9613BB6EEC for ; Thu, 9 Feb 2012 09:21:35 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1329344496; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Received:From:To:Subject:Date:Message-ID:User-Agent: MIME-Version:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=qOmAFhDlcKlwzQS5NIgPLOMpC94=; b=sVakugS4ci0wJZZ kPq9Wt/w/wltJzdsXpJN0B+FJ0rki1LMePI+cuO1CECRj8xll7UK8ABEIXmgdH9b saF5UQrhgyD65UplxXzgbg0Xto5xiSesMLNmq2wXf8WQN1rtut2QBKJ5EnQkC4Mj h0x2HpsHiQ7PkKM8uItIaCJdp+us= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:Received:From:To:Subject:Date:Message-ID:User-Agent:MIME-Version:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=igbKJLAypyChUIBRvvbdQYwdROewKrtDzywGDd1LmlfVSnDIQf9xlviEFek/Uv zrymH5XaMP2QpCfPKlKdWeVxCzux0dJcgG5qhlYagQH/gVFwBdqkZ+gsSjUTXojD Z45L6p++Gvv993YmuI8IBWQRFesgJQGw1fKSON23hdAoI=; Received: (qmail 4561 invoked by alias); 8 Feb 2012 22:21:31 -0000 Received: (qmail 4547 invoked by uid 22791); 8 Feb 2012 22:21:30 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_DNSWL_LOW, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from mail-pw0-f47.google.com (HELO mail-pw0-f47.google.com) (209.85.160.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 08 Feb 2012 22:21:15 +0000 Received: by pbcum15 with SMTP id um15so799793pbc.20 for ; Wed, 08 Feb 2012 14:21:14 -0800 (PST) Received: by 10.68.211.198 with SMTP id ne6mr73565051pbc.83.1328739674635; Wed, 08 Feb 2012 14:21:14 -0800 (PST) Received: by 10.68.211.198 with SMTP id ne6mr73565037pbc.83.1328739674552; Wed, 08 Feb 2012 14:21:14 -0800 (PST) Received: from coign.google.com ([2620:0:1000:2301:f2de:f1ff:fe40:72a8]) by mx.google.com with ESMTPS id kx17sm1415826pbb.19.2012.02.08.14.21.13 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Feb 2012 14:21:13 -0800 (PST) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org, gofrontend-dev@googlegroups.com Subject: libgo patch committed: Fix typo in //extern comment Date: Wed, 08 Feb 2012 14:21:12 -0800 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This patch fixes a typo in an //extern comment. Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline. Ian diff -r 419efb0adfa7 libgo/go/os/dir_regfile.go --- a/libgo/go/os/dir_regfile.go Wed Feb 08 11:30:14 2012 -0800 +++ b/libgo/go/os/dir_regfile.go Wed Feb 08 14:19:55 2012 -0800 @@ -9,5 +9,5 @@ import "syscall" -// extern readdir_r +//extern readdir_r func libc_readdir_r(*syscall.DIR, *syscall.Dirent, **syscall.Dirent) syscall.Errno