good for merge regards -steve
On Mon, 2009-04-06 at 18:54 +0200, Jim Meyering wrote: > At this rate (number of .h files), I'll be done in an hour or two ;-) > > From 0688cbf9fdc64828670b4f43d19f4a74d8f1dad2 Mon Sep 17 00:00:00 2001 > From: Jim Meyering <[email protected]> > Date: Mon, 6 Apr 2009 18:54:01 +0200 > Subject: [PATCH] mar_cpg.h: make "src" params const. > > * include/corosync/mar_cpg.h: > --- > include/corosync/mar_cpg.h | 12 ++++++------ > 1 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/include/corosync/mar_cpg.h b/include/corosync/mar_cpg.h > index 08c9d15..06b0fd4 100644 > --- a/include/corosync/mar_cpg.h > +++ b/include/corosync/mar_cpg.h > @@ -1,5 +1,5 @@ > /* > - * Copyright (c) 2006-2008 Red Hat, Inc. > + * Copyright (c) 2006-2009 Red Hat, Inc. > * Author: Patrick Caulfield ([email protected]) > * > * All rights reserved. > @@ -48,7 +48,7 @@ static inline void swab_mar_cpg_name_t (mar_cpg_name_t > *to_swab) > > static inline void marshall_from_mar_cpg_name_t ( > struct cpg_name *dest, > - mar_cpg_name_t *src) > + const mar_cpg_name_t *src) > { > dest->length = src->length; > memcpy (&dest->value, &src->value, CPG_MAX_NAME_LENGTH); > @@ -56,12 +56,12 @@ static inline void marshall_from_mar_cpg_name_t ( > > static inline void marshall_to_mar_cpg_name_t ( > mar_cpg_name_t *dest, > - struct cpg_name *src) > + const struct cpg_name *src) > { > dest->length = src->length; > memcpy (&dest->value, &src->value, CPG_MAX_NAME_LENGTH); > } > - > + > typedef struct { > mar_uint32_t nodeid __attribute__((aligned(8))); > mar_uint32_t pid __attribute__((aligned(8))); > @@ -70,7 +70,7 @@ typedef struct { > > static inline void marshall_from_mar_cpg_address_t ( > struct cpg_address *dest, > - mar_cpg_address_t *src) > + const mar_cpg_address_t *src) > { > dest->nodeid = src->nodeid; > dest->pid = src->pid; > @@ -79,7 +79,7 @@ static inline void marshall_from_mar_cpg_address_t ( > > static inline void marshall_to_mar_cpg_address_t ( > mar_cpg_address_t *dest, > - struct cpg_address *src) > + const struct cpg_address *src) > { > dest->nodeid = src->nodeid; > dest->pid = src->pid; _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
