This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fence: master - fence_node: fix const warning


Gitweb:        http://git.fedorahosted.org/git/fence.git?p=fence.git;a=commitdiff;h=1cb01435adb51e40e7a29f78cb0db5012086769b
Commit:        1cb01435adb51e40e7a29f78cb0db5012086769b
Parent:        fa4dbcf8e0be5f2a49c2d2b0086e95d7e86e24a6
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Wed May 6 07:59:08 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 23 09:31:01 2009 +0200

fence_node: fix const warning

several of those

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 fence/fence_node/fence_node.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fence/fence_node/fence_node.c b/fence/fence_node/fence_node.c
index 301d8b3..4cc533d 100644
--- a/fence/fence_node/fence_node.c
+++ b/fence/fence_node/fence_node.c
@@ -20,7 +20,7 @@ static int unfence;
 #define FL_SIZE 32
 static struct fence_log flog[FL_SIZE];
 static int flog_count;
-static char *action = "fence";
+static const char *action = "fence";
 
 #define OPTION_STRING "UvhV"
 
@@ -83,7 +83,7 @@ static int setup_cman(void)
 	return 0;
 }
 
-static char *fe_str(int r)
+static const char *fe_str(int r)
 {
 	switch (r) {
 	case FE_AGENT_SUCCESS:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]