From 4e8e8deafb76143ce42d52d8cb77f776300a673b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 30 Mar 2009 21:17:00 +0000 Subject: [PATCH] mar_gen.h, cfg.c: avoid 1 warning * services/cfg.c (message_handler_req_exec_cfg_killnode): * include/corosync/mar_gen.h (marshall_to_mar_name_t): git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1963 fd59a12c-fef9-0310-b244-a6a79926bd2f --- include/corosync/mar_gen.h | 6 +++--- services/cfg.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/corosync/mar_gen.h b/include/corosync/mar_gen.h index d1713fb1..16199ba9 100644 --- a/include/corosync/mar_gen.h +++ b/include/corosync/mar_gen.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006 Red Hat, Inc. + * Copyright (C) 2006, 2009 Red Hat, Inc. * Copyright (c) 2006-2008 Red Hat, Inc. * * All rights reserved. @@ -122,7 +122,7 @@ static inline void swab_mar_name_t (mar_name_t *to_swab) static inline void marshall_from_mar_name_t ( cs_name_t *dest, - mar_name_t *src) + const mar_name_t *src) { dest->length = src->length; memcpy (dest->value, src->value, CS_MAX_NAME_LENGTH); @@ -130,7 +130,7 @@ static inline void marshall_from_mar_name_t ( static inline void marshall_to_mar_name_t ( mar_name_t *dest, - cs_name_t *src) + const cs_name_t *src) { dest->length = src->length; memcpy (dest->value, src->value, CS_MAX_NAME_LENGTH); diff --git a/services/cfg.c b/services/cfg.c index fd534572..90e6685d 100644 --- a/services/cfg.c +++ b/services/cfg.c @@ -112,7 +112,7 @@ static void message_handler_req_exec_cfg_ringreenable ( unsigned int nodeid); static void message_handler_req_exec_cfg_killnode ( - void *message, + const void *message, unsigned int nodeid); static void message_handler_req_exec_cfg_shutdown ( @@ -596,10 +596,10 @@ static void exec_cfg_killnode_endian_convert (void *msg) static void message_handler_req_exec_cfg_killnode ( - void *message, + const void *message, unsigned int nodeid) { - struct req_exec_cfg_killnode *req_exec_cfg_killnode = message; + const struct req_exec_cfg_killnode *req_exec_cfg_killnode = message; cs_name_t reason; ENTER();