From patchwork Wed Aug 31 08:05:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 15111 Received: (qmail 120986 invoked by alias); 31 Aug 2016 08:06:29 -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 120964 invoked by uid 89); 31 Aug 2016 08:06:27 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=2016-08-31 X-HELO: mail-pa0-f65.google.com Received: from mail-pa0-f65.google.com (HELO mail-pa0-f65.google.com) (209.85.220.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 31 Aug 2016 08:06:17 +0000 Received: by mail-pa0-f65.google.com with SMTP id hh10so2252533pac.1 for ; Wed, 31 Aug 2016 01:06:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=fq0V2pinY8KlNJ0Z+CVfBC5q8lqrl1s5wmOSoskov24=; b=atHoFSHcWoamfg35zg8rJNV1UQgReoRnGXrDYiJwzZn8uDh2t7ZBLBdpxq8AYHfEB1 iQ3QbNWNZgJ1RE9J+4w+u9Q7lstR8n1haE+67xRHg/eWLkzA56C5B0T4kTbqROkNfA98 NU2wHrWYhffLsBboINyZ6GJ7jEyWn8i7Aus1VVKzK/qBvHmpAyjf6ix0J0Mlkl4+RW+a Bk0FdVc+bA+sXRNjqVaQHhSqA4OE17zVggZJeP+QEBZwgIwfp+jNfJHnQngJaVEFybgq lKgwK0DxnmxV9aQjOAUzsFqFK1dA3DgVQrXJPj/iP5rUvKr+uTaikq0ZrxQJJiOHFz7r yNKA== X-Gm-Message-State: AE9vXwNYiBM1GjqiLUq8CQzsGrS0Vu+MlZIRZzqn8B3/nFF3s/rmlQXjlyl1sg0B6Ptr5Q== X-Received: by 10.66.136.49 with SMTP id px17mr14321598pab.83.1472630775494; Wed, 31 Aug 2016 01:06:15 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc115.osuosl.org. [140.211.9.73]) by smtp.gmail.com with ESMTPSA id f3sm62704682pff.26.2016.08.31.01.06.14 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 31 Aug 2016 01:06:14 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH] Fix a typo in comment Date: Wed, 31 Aug 2016 09:05:47 +0100 Message-Id: <1472630747-22608-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes This patch replaces "keep things single" with "keep things simple". gdb: 2016-08-31 Yao Qi * record-full.c (record_full_insert_breakpoint): Fix typo. --- gdb/record-full.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/record-full.c b/gdb/record-full.c index 892fcaa..d5e1f8d 100644 --- a/gdb/record-full.c +++ b/gdb/record-full.c @@ -1650,7 +1650,7 @@ record_full_insert_breakpoint (struct target_ops *ops, really need to install regular breakpoints in the inferior. However, we do have to insert software single-step breakpoints, in case the target can't hardware step. To keep - things single, we always insert. */ + things simple, we always insert. */ struct cleanup *old_cleanups; int ret;