[Pvfs2-cvs] commit by pw in pvfs2/test/client/sysint: io-stress.c
CVS commit program
cvs at parl.clemson.edu
Thu Dec 7 16:47:22 EST 2006
Update of /projects/cvsroot/pvfs2/test/client/sysint
In directory parlweb1:/tmp/cvs-serv3878/test/client/sysint
Modified Files:
io-stress.c
Log Message:
gcc does not like type punned pointers
Index: io-stress.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/test/client/sysint/io-stress.c,v
diff -u -p -p -u -r1.2 -r1.3
--- io-stress.c 18 Aug 2006 15:19:36 -0000 1.2
+++ io-stress.c 7 Dec 2006 21:47:22 -0000 1.3
@@ -230,7 +230,7 @@ static void do_pvfs_io(int num_io)
memset(error_code_array, 0, MAX_OPS * sizeof(int));
memset(all_request, 0, MAX_OPS * sizeof(io_request *));
ret = PVFS_sys_testsome(
- op_id_array, &op_count, (void **) all_request,
+ op_id_array, &op_count, (void *) all_request,
error_code_array, 10);
for (i = 0; i < op_count; i++)
{
More information about the Pvfs2-cvs
mailing list