summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2011-07-22 09:40:58 +1000
committerMichael Cahill <michael.cahill@wiredtiger.com>2011-07-22 09:40:58 +1000
commitd1ac7e8e5761d04543eff8f731219b13e38e7188 (patch)
tree8f0b7c7c1b7d7fe220e1177e817e06acb22c3f72 /lang/python
parent4a6dc09e897748ff6ba6fab1929683aebdc40e46 (diff)
downloadmongo-d1ac7e8e5761d04543eff8f731219b13e38e7188.tar.gz
Replace wiredtiger_recno_t with uint64_t.
closes #71
Diffstat (limited to 'lang/python')
-rw-r--r--lang/python/wiredtiger.i6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/wiredtiger.i b/lang/python/wiredtiger.i
index fa538551b04..755a1b96876 100644
--- a/lang/python/wiredtiger.i
+++ b/lang/python/wiredtiger.i
@@ -148,7 +148,7 @@ SELFHELPER(struct wt_cursor)
$self->set_key($self, &k);
}
- void _set_recno(wiredtiger_recno_t recno) {
+ void _set_recno(uint64_t recno) {
$self->set_key($self, recno);
}
@@ -165,8 +165,8 @@ SELFHELPER(struct wt_cursor)
return SWIG_FromCharPtrAndSize(k.data, k.size);
}
- wiredtiger_recno_t _get_recno() {
- wiredtiger_recno_t r;
+ uint64_t _get_recno() {
+ uint64_t r;
$self->get_key($self, &r);
return r;
}