From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13050 invoked by alias); 1 Sep 2009 11:54:52 -0000 Received: (qmail 13042 invoked by uid 22791); 1 Sep 2009 11:54:51 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail-px0-f188.google.com (HELO mail-px0-f188.google.com) (209.85.216.188) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 01 Sep 2009 11:54:46 +0000 Received: by pxi26 with SMTP id 26so594261pxi.13 for ; Tue, 01 Sep 2009 04:54:45 -0700 (PDT) MIME-Version: 1.0 Received: by 10.143.139.6 with SMTP id r6mr65512wfn.282.1251806085067; Tue, 01 Sep 2009 04:54:45 -0700 (PDT) From: Hui Zhu Date: Tue, 01 Sep 2009 11:54:00 -0000 Message-ID: Subject: [OB] Fix syntax error in record_resume To: gdb-patches ml Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes 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: 2009-09/txt/msg00015.txt.bz2 Checked in under the obvious rule. Thanks, Hui 2009-09-01 Hui Zhu * record.c (record_resume): Change "siggnal" to "signal". =================================================================== RCS file: /cvs/src/src/gdb/record.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/gdb/record.c 2009/09/01 03:32:49 1.14 +++ src/gdb/record.c 2009/09/01 11:41:41 1.15 @@ -518,7 +518,7 @@ static void record_resume (struct target_ops *ops, ptid_t ptid, int step, - enum target_signal siggnal) + enum target_signal signal) { record_resume_step = step; @@ -534,7 +534,7 @@ return; } record_beneath_to_resume (record_beneath_to_resume_ops, ptid, 1, - siggnal); + signal); } }