From patchwork Mon Apr 14 15:33:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 536 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx21.g.dreamhost.com (peon2454.g.dreamhost.com [208.113.200.127]) by wilcox.dreamhost.com (Postfix) with ESMTP id 58684360072 for ; Mon, 14 Apr 2014 08:33:35 -0700 (PDT) Received: by homiemail-mx21.g.dreamhost.com (Postfix, from userid 14314964) id 089091368DA4; Mon, 14 Apr 2014 08:33:34 -0700 (PDT) X-Original-To: gdb@patchwork.siddhesh.in Delivered-To: x14314964@homiemail-mx21.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx21.g.dreamhost.com (Postfix) with ESMTPS id C99C11368D7F for ; Mon, 14 Apr 2014 08:33:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type; q=dns; s=default; b=OYn5RSBmvfkDDmaqIozX/0YXShMzh fJKGpvCzylhXpZBpT3mHmQ9NeN/lSGrknHOpjATtN7r1CU3knd9KK7Ds3IS+YW86 HdvRdqOjk2fiIIsnZJ4fmPcQhhrLKmEEDliEJeAxk6CelrfMxv8h5ZI9ejdevk1G QYUGzh9HrhY6TA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type; s=default; bh=XFqAoToMRuos9PJ6SzScQcCOdrg=; b=WEU xdSZDKVFohGJDoW8O5CoGRYiQWwwp6eLw3VIs/ntX8/cHhVrdPW6WNc8hZfjAvtf OFUl6tYfQ349/iEcUbT4OWOof1XhlH8WJylBjG+qtiq8ul1ERDhXv/R/SvqxnQJp A0HzoNX4WQ8PnfTHqf9ZPGpvZbPRyqLJ2Zxg3xgw= Received: (qmail 17244 invoked by alias); 14 Apr 2014 15:33:27 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 17043 invoked by uid 89); 14 Apr 2014 15:33:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.5 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 14 Apr 2014 15:33:23 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s3EFXMUa023326 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 14 Apr 2014 11:33:22 -0400 Received: from anchor.twiddle.net (vpn-225-210.phx2.redhat.com [10.3.225.210]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s3EFXLmH012636 for ; Mon, 14 Apr 2014 11:33:21 -0400 Message-ID: <534BFFC0.7040305@redhat.com> Date: Mon, 14 Apr 2014 08:33:20 -0700 From: Richard Henderson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [COMMITTED PATCH] Fix typo in alpha-linux-nat.c X-IsSubscribed: yes X-DH-Original-To: gdb@patchwork.siddhesh.in Silly typo that breaks the build with -Werror -Wmissing-prototypes. Committed as obvious. r~ 2014-04-14 Richard Henderson * alpha-linux-nat.c (_initialize_alpha_linux_nat): Fix prototype. diff --git a/gdb/alpha-linux-nat.c b/gdb/alpha-linux-nat.c index 50b94a2..42c0edc 100644 --- a/gdb/alpha-linux-nat.c +++ b/gdb/alpha-linux-nat.c @@ -91,7 +91,7 @@ alpha_linux_register_u_offset (struct gdbarch *gdbarch, int regno, int store_p) return FPR_BASE + regno - gdbarch_fp0_regnum (gdbarch); } -void _initialialize_alpha_linux_nat (void); +void _initialize_alpha_linux_nat (void); void _initialize_alpha_linux_nat (void)