From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30007 invoked by alias); 26 Oct 2010 18:09:43 -0000 Received: (qmail 29996 invoked by uid 22791); 26 Oct 2010 18:09:41 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 26 Oct 2010 18:09:34 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 679302BAC74; Tue, 26 Oct 2010 14:09:32 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ktL8EXQRq++y; Tue, 26 Oct 2010 14:09:32 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 472812BAB0F; Tue, 26 Oct 2010 14:09:32 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 94C9CF59A2; Tue, 26 Oct 2010 14:09:31 -0400 (EDT) From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Joel Brobecker Subject: [commit] fix typo in _FILE_OFFSET_BITS comment Date: Tue, 26 Oct 2010 18:09:00 -0000 Message-Id: <1288116570-3634-1-git-send-email-brobecker@adacore.com> In-Reply-To: <4CA67482.7010206@vmware.com> References: <4CA67482.7010206@vmware.com> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-10/txt/msg00376.txt.bz2 This fixes a typo that MichaelS noticed in a patch I submitted and forgot to fix. gdb/ChangeLog: * (_FILE_OFFSET_BITS): Fix typo in comment. Checked in. --- gdb/ChangeLog | 4 ++++ gdb/python/python-internal.h | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4bfe017..8dcbd1a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2010-10-26 Joel Brobecker + * (_FILE_OFFSET_BITS): Fix typo in comment. + +2010-10-26 Joel Brobecker + * python/python-internal.h (_FILE_OFFSET_BITS): Undefine. (PyEval_InitThreads): Remove duplicate. Define as nothing. (PyEval_ReleaseLock): Define as nothing. diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index e18f50a..67de622 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -38,7 +38,7 @@ /* On sparc-solaris, /usr/include/sys/feature_tests.h defines _FILE_OFFSET_BITS, which pyconfig.h also defines. Same work - arount technique as above. */ + around technique as above. */ #undef _FILE_OFFSET_BITS #if HAVE_LIBPYTHON2_4 -- 1.7.1