From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH] libelf: Fix typo in header guard macro Date: Thu, 8 Aug 2013 11:49:57 +0100 Message-ID: <520377D5.8050602@citrix.com> References: <1375958609-4967-1-git-send-email-prlw1@cam.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1375958609-4967-1-git-send-email-prlw1@cam.ac.uk> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Patrick Welche Cc: xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On 08/08/13 11:43, Patrick Welche wrote: > s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/ > > Signed-off-by: Patrick Welche Reviewed-by: Andrew Cooper > --- > xen/common/libelf/libelf-private.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/xen/common/libelf/libelf-private.h b/xen/common/libelf/libelf-private.h > index ea7e197..f4b79c7 100644 > --- a/xen/common/libelf/libelf-private.h > +++ b/xen/common/libelf/libelf-private.h > @@ -14,7 +14,7 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA > */ > #ifndef __LIBELF_PRIVATE_H__ > -#define __LIBELF_PRIVATE_H_ > +#define __LIBELF_PRIVATE_H__ > > #ifdef __XEN__ > > @@ -99,7 +99,7 @@ do { strncpy((d),(s),sizeof((d))-1); \ > * of memcpy, memset, memmove and strcpy. Every call site > * must either use elf_mem*_unchecked, or elf_mem*_safe. */ > > -#endif /* __LIBELF_PRIVATE_H_ */ > +#endif /* __LIBELF_PRIVATE_H__ */ > > /* > * Local variables: