From: huanghua Date: Tue, 27 Jun 2006 08:26:57 +0000 (+0000) Subject: fix syntax error by silly mistake. X-Git-Tag: v1_8_0_110~486^2~1531 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=974472e4ddff4f804254f6d137b5fa646d7638f0;p=fs%2Flustre-release.git fix syntax error by silly mistake. --- diff --git a/lustre/mdt/mdt_reint.c b/lustre/mdt/mdt_reint.c index 6ab98b9..e5285d1 100644 --- a/lustre/mdt/mdt_reint.c +++ b/lustre/mdt/mdt_reint.c @@ -141,9 +141,10 @@ static int mdt_md_mkobj(struct mdt_thread_info *info) &info->mti_attr); if (rc == 0) { mdt_pack_attr2body(repbody, &info->mti_attr); - repbody->fid1 = *mdt_object_fid(next); + repbody->fid1 = *mdt_object_fid(o); repbody->valid |= OBD_MD_FLID; } + } mdt_object_put(info->mti_ctxt, o); } else rc = PTR_ERR(o);