
patchbot at xen
Aug 8, 2013, 10:23 PM
Post #1 of 1
(7 views)
Permalink
|
|
[xen master] libelf: Fix typo in header guard macro
|
|
commit 0aec8823501f8ee058c1ba673d2ac3e0f3f2e8db Author: Patrick Welche <prlw1 [at] cam> AuthorDate: Thu Aug 8 11:43:29 2013 +0100 Commit: Ian Campbell <ian.campbell [at] citrix> CommitDate: Thu Aug 8 12:47:38 2013 +0100 libelf: Fix typo in header guard macro s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/ Signed-off-by: Patrick Welche <prlw1 [at] cam> Reviewed-by: Andrew Cooper <andrew.cooper3 [at] citrix> Acked-by: Ian Campbell <ian.campbell [at] citrix> --- xen/common/libelf/libelf-private.h | 4 ++-- 1 files 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: -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog [at] lists http://lists.xensource.com/xen-changelog
|