From patchwork Sun May 29 01:29:13 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Honggyu Kim X-Patchwork-Id: 12596 Received: (qmail 69074 invoked by alias); 29 May 2016 01:28:08 -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 69063 invoked by uid 89); 29 May 2016 01:28:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: lgeamrelo13.lge.com Received: from LGEAMRELO13.lge.com (HELO lgeamrelo13.lge.com) (156.147.23.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 29 May 2016 01:28:05 +0000 Received: from unknown (HELO lgeamrelo01.lge.com) (156.147.1.125) by 156.147.23.53 with ESMTP; 29 May 2016 10:28:03 +0900 X-Original-SENDERIP: 156.147.1.125 X-Original-MAILFROM: hong.gyu.kim@lge.com Received: from unknown (HELO LGEAEXHB03Q.LGE.NET) (165.244.98.203) by 156.147.1.125 with ESMTP; 29 May 2016 10:28:02 +0900 X-Original-SENDERIP: 165.244.98.203 X-Original-MAILFROM: hong.gyu.kim@lge.com Received: from lgekrmhub08.lge.com (10.185.110.18) by lgeaexhb03q.lge.net (165.244.98.203) with Microsoft SMTP Server id 8.3.264.0; Sun, 29 May 2016 10:28:03 +0900 Received: from lgeamrelo02.lge.com ([156.147.1.126]) by lgekrmhub08.lge.com (Lotus Domino Release 8.5.3FP6) with ESMTP id 2016052910280206-37405 ; Sun, 29 May 2016 10:28:02 +0900 Received: from unknown (HELO localhost.localdomain) (10.177.222.39) by 156.147.1.126 with ESMTP; 29 May 2016 10:28:02 +0900 X-Original-SENDERIP: 10.177.222.39 X-Original-MAILFROM: hong.gyu.kim@lge.com From: Honggyu Kim To: CC: Honggyu Kim Subject: [PATCH] BFD: Fix unmatched #ifndef and #endif Date: Sun, 29 May 2016 10:29:13 +0900 Message-ID: <1464485353-13418-1-git-send-email-hong.gyu.kim@lge.com> MIME-Version: 1.0 bfd/bfd-in.h has '#ifndef __BFD_H_SEEN__' statement at the beginning of the header file but do not have '#endif' at the end. * bfd/bfd-in.h: Add #endif statment --- bfd/bfd-in.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index 196bd70..ba36ee1 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -1026,3 +1026,5 @@ extern bfd_boolean v850_elf_create_sections extern bfd_boolean v850_elf_set_note (bfd *, unsigned int, unsigned int); + +#endif