All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libelf: Fix typo in header guard macro
@ 2013-08-08 10:43 Patrick Welche
  2013-08-08 10:49 ` Andrew Cooper
  0 siblings, 1 reply; 3+ messages in thread
From: Patrick Welche @ 2013-08-08 10:43 UTC (permalink / raw)
  To: xen-devel; +Cc: Patrick Welche

s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/

Signed-off-by: Patrick Welche <prlw1@cam.ac.uk>
---
 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:
-- 
1.8.3.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] libelf: Fix typo in header guard macro
  2013-08-08 10:43 [PATCH] libelf: Fix typo in header guard macro Patrick Welche
@ 2013-08-08 10:49 ` Andrew Cooper
  2013-08-08 12:17   ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Cooper @ 2013-08-08 10:49 UTC (permalink / raw)
  To: Patrick Welche; +Cc: xen-devel

On 08/08/13 11:43, Patrick Welche wrote:
> s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/
>
> Signed-off-by: Patrick Welche <prlw1@cam.ac.uk>

Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>

> ---
>  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:

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] libelf: Fix typo in header guard macro
  2013-08-08 10:49 ` Andrew Cooper
@ 2013-08-08 12:17   ` Ian Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2013-08-08 12:17 UTC (permalink / raw)
  To: Andrew Cooper; +Cc: Patrick Welche, xen-devel

On Thu, 2013-08-08 at 11:49 +0100, Andrew Cooper wrote:
> On 08/08/13 11:43, Patrick Welche wrote:
> > s/__LIBELF_PRIVATE_H_/__LIBELF_PRIVATE_H__/
> >
> > Signed-off-by: Patrick Welche <prlw1@cam.ac.uk>
> 
> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>

+ ack + apply. Thanks.

> 
> > ---
> >  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:
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-08-08 12:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-08 10:43 [PATCH] libelf: Fix typo in header guard macro Patrick Welche
2013-08-08 10:49 ` Andrew Cooper
2013-08-08 12:17   ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.