From d2af72e46de8b349dc7356e2acdae375b257f6d0 Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 7 Dec 1999 18:58:12 +0000 Subject: [PATCH] Fixed minor typo in gen_copy_data(). --- lustre/obdclass/genops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.8.3.1