There are still too many warnings ;-) I missed the fact that my recent changes introduced one new warning. Here's the fix:
>From fa2983e1e57fd4d772b76635e0625ed8c294959d Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Wed, 1 Apr 2009 11:46:43 +0200 Subject: [PATCH] corosync-objctl.c: remove a just-added "const" * tools/corosync-objctl.c (get_key): Remove just-added const from 2nd parameter. --- tools/corosync-objctl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/corosync-objctl.c b/tools/corosync-objctl.c index ca85f9a..4f370d7 100644 --- a/tools/corosync-objctl.c +++ b/tools/corosync-objctl.c @@ -217,7 +217,7 @@ static void get_parent_name(const char * name_pt, char * parent_name) if (tmp != NULL) *tmp = '\0'; } -static void get_key(const char * name_pt, const char * key_name, char * key_value) +static void get_key(const char * name_pt, char * key_name, char * key_value) { char * tmp; char str_copy[OBJ_NAME_SIZE]; -- 1.6.2.rc1.285.gc5f54 _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
