From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1474) id E31B0385800C; Wed, 15 Feb 2023 22:01:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E31B0385800C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676498505; bh=XaIBE/2Ki9jLIv8SeEGEfI/nguneVGEdYJ26OTZVHWs=; h=From:To:Subject:Date:From; b=FV20ILgk4BzA9EZzclj0rwrdx93QaOLN303P1KBxrEauuW98U49NvbA748fCe/Wl/ jUiXBQMiRnlFVCSVtKm6KMHP4YjogXdQ7UBscT5w5QHvkdD1rCCwxzbIha1WVwR1Ak Q9zmBh4ZBtkM1tmVcqssWKYGbnQYbexMT4Uj/JVY= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jan-Benedict Glaw To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6068] Fix an accidental double space X-Act-Checkin: gcc X-Git-Author: Jan-Benedict Glaw X-Git-Refname: refs/heads/master X-Git-Oldrev: c75cbeba81e5b4737a9ab7dd28cce650965535a9 X-Git-Newrev: d6d3de7170670f55825a28e84a9a89a17381a19f Message-Id: <20230215220145.E31B0385800C@sourceware.org> Date: Wed, 15 Feb 2023 22:01:45 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d6d3de7170670f55825a28e84a9a89a17381a19f commit r13-6068-gd6d3de7170670f55825a28e84a9a89a17381a19f Author: Jan-Benedict Glaw Date: Wed Feb 15 23:00:46 2023 +0100 Fix an accidental double space gcc/ * config/bpf/bpf.cc (bpf_option_override): Fix doubled space. Diff: --- gcc/config/bpf/bpf.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/bpf/bpf.cc b/gcc/config/bpf/bpf.cc index b268801d00c..d8693f8cfbe 100644 --- a/gcc/config/bpf/bpf.cc +++ b/gcc/config/bpf/bpf.cc @@ -258,7 +258,7 @@ bpf_option_override (void) { inform (input_location, "%<-fstack-protector%> does not work " - " on this architecture"); + "on this architecture"); flag_stack_protect = 0; } }