From: Kay Sievers Date: Sun, 23 Oct 2005 16:55:22 +0000 (+0200) Subject: volume_id: fix typo in ocfs X-Git-Tag: 174~2518 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b5866871385be4e4ad170dca40f5e2b1c6666694;p=elogind.git volume_id: fix typo in ocfs Signed-off-by: Kay Sievers --- diff --git a/extras/volume_id/volume_id/ocfs.c b/extras/volume_id/volume_id/ocfs.c index 81b4e2d04..88064ed19 100644 --- a/extras/volume_id/volume_id/ocfs.c +++ b/extras/volume_id/volume_id/ocfs.c @@ -172,7 +172,7 @@ int volume_id_probe_ocfs2(struct volume_id *id, uint64_t off) dbg("probing at offset 0x%llx", (unsigned long long) off); - for (blksize = 0x200; blksize <= OCFS2_MAX_BLOCKSIZE; blksize >>= 1) { + for (blksize = 0x200; blksize <= OCFS2_MAX_BLOCKSIZE; blksize <<= 1) { buf = volume_id_get_buffer(id, off + OCFS2_SUPER_BLOCK_BLKNO * blksize, 0x200); if (buf == NULL) return -1;