diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 22:41:08 +0000 | 
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-11-07 22:41:08 +0000 | 
| commit | 6274bdda4c28a691d1dc15ad9b17c6c29c46b039 (patch) | |
| tree | 3c2ec1eac5d9861c85774dd1809c957b8c40c3a8 /sys/kern/vfs_cluster.c | |
| parent | d0e938f4f15a86efdbc567353e1bde4a174a38cf (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_cluster.c')
| -rw-r--r-- | sys/kern/vfs_cluster.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/kern/vfs_cluster.c b/sys/kern/vfs_cluster.c index 1994c54d775d..7fd04023a8f0 100644 --- a/sys/kern/vfs_cluster.c +++ b/sys/kern/vfs_cluster.c @@ -289,10 +289,11 @@ single_block_read:  					printf("A+");  				else  					printf("A"); -				printf("(%lld,%ld,%lld,%d) ", -				    (intmax_t)rbp->b_lblkno, rbp->b_bcount, +				printf("(%jd,%jd,%jd,%jd) ", +				    (intmax_t)rbp->b_lblkno, +				    (intmax_t)rbp->b_bcount,  				    (intmax_t)(rbp->b_lblkno - origblkno), -				    seqcount); +				    (intmax_t)seqcount);  			}  #endif  | 
