diff options
author | Keith Bostic <keith.bostic@mongodb.com> | 2016-06-08 00:58:49 -0400 |
---|---|---|
committer | Alex Gorrod <alexander.gorrod@mongodb.com> | 2016-06-08 14:58:49 +1000 |
commit | 36229a2693aa6e7bcb8fa471edf1ab05ee79869a (patch) | |
tree | 4a9e197e64f2d1c1a07b2595c828814cb82019a2 /src/block/block_open.c | |
parent | 1e30ff33750b5a5885420654f6d39101b6cb8610 (diff) | |
download | mongo-36229a2693aa6e7bcb8fa471edf1ab05ee79869a.tar.gz |
WT-2682 add option to configure WiredTiger with strict compiler flags (#2773)
Add the --enable-strict option that uses our current best guess at the right flags for strict compilation.
While adding the option, expand the set of flags we can compile cleanly with.
Diffstat (limited to 'src/block/block_open.c')
-rw-r--r-- | src/block/block_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/block_open.c b/src/block/block_open.c index e58bef30a6d..1603b1574e7 100644 --- a/src/block/block_open.c +++ b/src/block/block_open.c @@ -59,7 +59,7 @@ __wt_block_manager_create( session, filename, tmp->data)); WT_ERR(__wt_msg(session, "unexpected file %s found, renamed to %s", - filename, (char *)tmp->data)); + filename, (const char *)tmp->data)); break; } } |