[PVFS2-CVS]
commit by neill in pvfs2/src/client/sysint: mgmt-create-dirent.sm
sys-truncate.sm
CVS commit program
cvs at parl.clemson.edu
Thu Sep 16 11:59:16 EDT 2004
Update of /projects/cvsroot/pvfs2/src/client/sysint
In directory parlweb:/tmp/cvs-serv32234/src/client/sysint
Modified Files:
mgmt-create-dirent.sm sys-truncate.sm
Log Message:
- fixed 64bit compile warnings (AMD64/Opteron)
Index: mgmt-create-dirent.sm
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/client/sysint/mgmt-create-dirent.sm,v
diff -p -u -r1.2 -r1.3
--- mgmt-create-dirent.sm 9 Sep 2004 14:29:10 -0000 1.2
+++ mgmt-create-dirent.sm 16 Sep 2004 14:59:16 -0000 1.3
@@ -169,7 +169,7 @@ static int mgmt_create_dirent_setup_msgp
"handle %Lu under parent %Lu,%d\n",
sm_p->u.mgmt_create_dirent.entry,
Lu(sm_p->u.mgmt_create_dirent.entry_handle),
- Lu(sm_p->parent_ref.handle), Lu(sm_p->parent_ref.fs_id));
+ Lu(sm_p->parent_ref.handle), sm_p->parent_ref.fs_id);
PINT_SERVREQ_CRDIRENT_FILL(
msg_p->req,
Index: sys-truncate.sm
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/client/sysint/sys-truncate.sm,v
diff -p -u -r1.33 -r1.34
--- sys-truncate.sm 17 Aug 2004 17:51:22 -0000 1.33
+++ sys-truncate.sm 16 Sep 2004 14:59:16 -0000 1.34
@@ -107,7 +107,7 @@ int PVFS_isys_truncate(
if (size < 0)
{
- gossip_err("invalid size (negative) specified: %Ld\n", size);
+ gossip_err("invalid size (negative) specified: %Ld\n", Ld(size));
return ret;
}
More information about the PVFS2-CVS
mailing list