summaryrefslogtreecommitdiff
path: root/src/block
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-11-25 08:03:03 -0500
committerKeith Bostic <keith@wiredtiger.com>2014-11-25 08:03:03 -0500
commit103ec2415c022c02810ae5b852de96785c4d0395 (patch)
tree846c607ddc45b292b492d0ea82d0a7205a8bbe2d /src/block
parent47a0738863285d5a432808da2edfbe87ce265d41 (diff)
downloadmongo-103ec2415c022c02810ae5b852de96785c4d0395.tar.gz
Fix a typo in a macro name.
Diffstat (limited to 'src/block')
-rw-r--r--src/block/block_vrfy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/block/block_vrfy.c b/src/block/block_vrfy.c
index 148b4fa9743..bfbb06cfe9e 100644
--- a/src/block/block_vrfy.c
+++ b/src/block/block_vrfy.c
@@ -17,7 +17,7 @@ static int __verify_last_avail(WT_SESSION_IMPL *, WT_BLOCK *, WT_CKPT *);
static int __verify_last_truncate(WT_SESSION_IMPL *, WT_BLOCK *, WT_CKPT *);
/* The bit list ignores the first block: convert to/from a frag/offset. */
-#define WT_wt_off_tO_FRAG(block, off) \
+#define WT_wt_off_TO_FRAG(block, off) \
((off) / (block)->allocsize - 1)
#define WT_FRAG_TO_OFF(block, frag) \
(((wt_off_t)(frag + 1)) * (block)->allocsize)
@@ -81,7 +81,7 @@ __wt_block_verify_start(
* verify many non-contiguous blocks creating too many entries on the
* list to fit into memory.
*/
- block->frags = (uint64_t)WT_wt_off_tO_FRAG(block, size);
+ block->frags = (uint64_t)WT_wt_off_TO_FRAG(block, size);
WT_RET(__bit_alloc(session, block->frags, &block->fragfile));
/*
@@ -252,7 +252,7 @@ __wt_verify_ckpt_load(
WT_RET(__bit_alloc(session, block->frags, &block->fragckpt));
el = &block->verify_alloc;
WT_EXT_FOREACH(ext, el->off) {
- frag = (uint64_t)WT_wt_off_tO_FRAG(block, ext->off);
+ frag = (uint64_t)WT_wt_off_TO_FRAG(block, ext->off);
frags = (uint64_t)(ext->size / block->allocsize);
__bit_nset(block->fragckpt, frag, frag + (frags - 1));
}
@@ -342,7 +342,7 @@ __verify_filefrag_add(WT_SESSION_IMPL *session, WT_BLOCK *block,
"non-existent file blocks",
(uintmax_t)offset, (uintmax_t)(offset + size));
- frag = (uint64_t)WT_wt_off_tO_FRAG(block, offset);
+ frag = (uint64_t)WT_wt_off_TO_FRAG(block, offset);
frags = (uint64_t)(size / block->allocsize);
/* It may be illegal to reference a particular chunk more than once. */
@@ -445,7 +445,7 @@ __verify_ckptfrag_add(
"file blocks outside the checkpoint",
(uintmax_t)offset, (uintmax_t)(offset + size));
- frag = (uint64_t)WT_wt_off_tO_FRAG(block, offset);
+ frag = (uint64_t)WT_wt_off_TO_FRAG(block, offset);
frags = (uint64_t)(size / block->allocsize);
/* It is illegal to reference a particular chunk more than once. */