From: Derrick Brashear Date: Thu, 22 Jan 2009 20:11:45 +0000 (+0000) Subject: disconnected-call-makedir-with-correct-casting-20090122 X-Git-Tag: openafs-devel-1_5_61~583 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=396b573b12a509b7e0d8d5094ebadc12c6aa8b45;p=packages%2Fo%2Fopenafs.git disconnected-call-makedir-with-correct-casting-20090122 LICENSE IPL10 another find by the irix compiler. --- diff --git a/src/afs/VNOPS/afs_vnop_dirops.c b/src/afs/VNOPS/afs_vnop_dirops.c index df2be83eb..ae721c339 100644 --- a/src/afs/VNOPS/afs_vnop_dirops.c +++ b/src/afs/VNOPS/afs_vnop_dirops.c @@ -216,7 +216,7 @@ afs_mkdir(OSI_VC_DECL(adp), char *aname, struct vattr *attrs, ObtainWriteLock(&afs_xdcache, 739); code = afs_dir_MakeDir(new_dc, (afs_int32 *) &newFid.Fid, - (afs_int32) &adp->fid.Fid); + (afs_int32 *) &adp->fid.Fid); ReleaseWriteLock(&afs_xdcache); if (code) printf("afs_mkdir: afs_dirMakeDir code = %u\n", code);