From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28507 invoked by alias); 15 Feb 2013 15:01:38 -0000 Received: (qmail 28492 invoked by uid 22791); 15 Feb 2013 15:01:37 -0000 X-SWARE-Spam-Status: No, hits=-4.7 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-pb0-f50.google.com (HELO mail-pb0-f50.google.com) (209.85.160.50) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 15 Feb 2013 15:01:31 +0000 Received: by mail-pb0-f50.google.com with SMTP id up1so639565pbc.23 for ; Fri, 15 Feb 2013 07:01:29 -0800 (PST) X-Received: by 10.66.73.138 with SMTP id l10mr13493184pav.44.1360940488917; Fri, 15 Feb 2013 07:01:28 -0800 (PST) Received: from [192.168.1.128] ([115.193.204.164]) by mx.google.com with ESMTPS id x2sm93872333paw.8.2013.02.15.07.01.26 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 15 Feb 2013 07:01:27 -0800 (PST) Message-ID: <511E4EAC.2020602@gmail.com> Date: Fri, 15 Feb 2013 15:01:00 -0000 From: asmwarrior User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0a1 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [patch]remove whitespace in frame.c Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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: 2013-02/txt/msg00391.txt.bz2 Hi, this is a simple patch to remove a white space gdb/frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/frame.c b/gdb/frame.c index 0821b6e..4b8ab60 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -42,7 +42,7 @@ #include "gdbthread.h" #include "block.h" #include "inline-frame.h" -#include "tracepoint.h" +#include "tracepoint.h" static struct frame_info *get_prev_frame_1 (struct frame_info *this_frame); static struct frame_info *get_prev_frame_raw (struct frame_info *this_frame); Thanks Yuanhui Zhang