summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-07-13 22:23:11 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-07-13 22:23:11 -0400
commit1690e2fff42190d40e2b3ef450d2d5b338a72e1e (patch)
treeb64f43244c2ebffc1f807a4713a6966326e7420a /examples
parent63b9832431e7481e13f2fe716e6f3214e9ed3414 (diff)
downloadmongo-1690e2fff42190d40e2b3ef450d2d5b338a72e1e.tar.gz
update the file_extend configuration semantics to match the current
pattern.
Diffstat (limited to 'examples')
-rw-r--r--examples/c/ex_all.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/c/ex_all.c b/examples/c/ex_all.c
index 7e5e1568eff..5c1797ce278 100644
--- a/examples/c/ex_all.c
+++ b/examples/c/ex_all.c
@@ -902,8 +902,8 @@ main(void)
#endif
/*! [Configure file_extend] */
- ret = wiredtiger_open(home, NULL,
- "create,file_extend=(type=[data],size=16MB)", &conn);
+ ret = wiredtiger_open(
+ home, NULL, "create,file_extend=(data=16MB)", &conn);
/*! [Configure file_extend] */
if (ret == 0)
(void)conn->close(conn, NULL);