From: Patrick Welche Date: Thu, 8 Aug 2013 10:43:29 +0000 (+0100) Subject: libelf: Fix typo in header guard macro X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6550 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0aec8823501f8ee058c1ba673d2ac3e0f3f2e8db;p=xen.git libelf: Fix typo in header guard macro s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/ Signed-off-by: Patrick Welche Reviewed-by: Andrew Cooper Acked-by: Ian Campbell --- diff --git a/xen/common/libelf/libelf-private.h b/xen/common/libelf/libelf-private.h index ea7e197b46..f4b79c7136 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: