From: adilger Date: Tue, 7 Dec 1999 18:58:12 +0000 (+0000) Subject: Fixed minor typo in gen_copy_data(). X-Git-Tag: 0.4.2~787 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=d2af72e46de8b349dc7356e2acdae375b257f6d0;p=fs%2Flustre-release.git Fixed minor typo in gen_copy_data(). --- diff --git a/lustre/obdclass/genops.c b/lustre/obdclass/genops.c index 7932310..bfc3499 100644 --- a/lustre/obdclass/genops.c +++ b/lustre/obdclass/genops.c @@ -208,7 +208,7 @@ int gen_copy_data(struct obd_conn *conn, obdattr *tgt, obdattr *src) ENTRY; CDEBUG(D_INODE, "src: ino %ld blocks %ld, size %Ld, dst: ino %ld\n", - src->i_ino, src->i_blocks, src->i_size, dst->i_ino); + src->i_ino, src->i_blocks, src->i_size, tgt->i_ino); page = alloc_page(GFP_USER); if ( !page ) { EXIT;