evsbench.c; avoid a format mismatch warning

* test/evsbench.c (evs_deliver_fn): %s vs. void*

git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1957 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Jim Meyering 2009-03-30 21:16:05 +00:00
parent 23c64c6413
commit f77bb880ac

View File

@ -73,7 +73,8 @@ void evs_deliver_fn (
void *msg,
int msg_len)
{
printf ("Delivering message %s\n", msg);
char *m = msg;
printf ("Delivering message %s\n", m);
}
void evs_confchg_fn (