diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-06-24 15:48:57 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2011-06-24 15:48:57 +1000 |
commit | a202be7f7a3d0fe3adc6b86f491d9c7d30f6afd8 (patch) | |
tree | ccd662f807f4805103acd27d73191633bc1e5386 /src/log | |
parent | 5f6811904df5a520703bb4b048ba407b9848f136 (diff) | |
download | mongo-a202be7f7a3d0fe3adc6b86f491d9c7d30f6afd8.tar.gz |
Remove the vararg versions of the packing functions from the public API. Add a session parameter to the internal functions and report errors.
--HG--
rename : src/api/version.c => src/api/api_version.c
Diffstat (limited to 'src/log')
-rw-r--r-- | src/log/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log/log.c b/src/log/log.c index b94e120a3cd..90da9732da1 100644 --- a/src/log/log.c +++ b/src/log/log.c @@ -34,7 +34,7 @@ __wt_log_put(WT_SESSION_IMPL *session, WT_LOGREC_DESC *recdesc, ...) WT_RET(__wt_buf_initsize(session, buf, size)); va_start(ap, recdesc); - WT_ERR(wiredtiger_struct_packv(buf->mem, size, recdesc->fmt, ap)); + WT_ERR(__wt_struct_packv(session, buf->mem, size, recdesc->fmt, ap)); err: va_end(ap); return (ret); |