summaryrefslogtreecommitdiff
path: root/src/schema/schema_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema/schema_create.c')
-rw-r--r--src/schema/schema_create.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/schema/schema_create.c b/src/schema/schema_create.c
index 020d5e72c13..0677fa711a5 100644
--- a/src/schema/schema_create.c
+++ b/src/schema/schema_create.c
@@ -35,7 +35,7 @@ __wt_direct_io_size_check(WT_SESSION_IMPL *session,
* units of its happy place.
*/
if (FLD_ISSET(conn->direct_io,
- WT_DIRECT_IO_CHECKPOINT | WT_DIRECT_IO_DATA)) {
+ WT_DIRECT_IO_CHECKPOINT | WT_DIRECT_IO_DATA)) {
align = (int64_t)conn->buffer_alignment;
if (align != 0 && (cval.val < align || cval.val % align != 0))
WT_RET_MSG(session, EINVAL,
@@ -601,7 +601,8 @@ __create_table(WT_SESSION_IMPL *session,
if (ncolgroups == 0) {
cgsize = strlen("colgroup:") + strlen(tablename) + 1;
WT_ERR(__wt_calloc_def(session, cgsize, &cgname));
- snprintf(cgname, cgsize, "colgroup:%s", tablename);
+ WT_ERR(__wt_snprintf(
+ cgname, cgsize, "colgroup:%s", tablename));
WT_ERR(__create_colgroup(
session, cgname, exclusive, config));
}