Steven Dake wrote: > This patch removes const from the second parameter instead of adding it.
Ah ha. You'll notice that that undoes the earlier const-adding change in 0002-cfg.c-nearly-warning-free.patch. There were others like that, too, but I noticed them and squashed them together, effectively erasing both. Bottom line: the const-adding change in 0002 is wrong, and the const-removing change in 0007 fixes it. I'll squash 0007 into 0002 before commit. Thanks! > On Mon, 2009-03-30 at 20:27 +0200, Jim Meyering wrote: >> From: Jim Meyering <[email protected]> >> >> --- >> include/corosync/engine/coroapi.h | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/include/corosync/engine/coroapi.h >> b/include/corosync/engine/coroapi.h >> index 6ed00a7..5be2f7b 100644 >> --- a/include/corosync/engine/coroapi.h >> +++ b/include/corosync/engine/coroapi.h >> @@ -311,7 +311,7 @@ struct corosync_api_v1 { >> >> int (*object_name_get) ( >> hdb_handle_t object_handle, >> - const char *object_name, >> + char *object_name, >> int *object_name_len); >> >> int (*object_dump) ( _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
