summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2017-05-25 22:31:11 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2017-05-25 22:31:11 -0400
commit135d086cda202da164381b0979ce6bfc8d0fa3bc (patch)
treea95c737ac4465e4c2c8c19472ce418e6a6be9d28
parent28f0d02a151ab867ae04c314c11cef0295af289a (diff)
downloadmongo-135d086cda202da164381b0979ce6bfc8d0fa3bc.tar.gz
SERVER-28960 Fix lint.
-rw-r--r--src/mongo/unittest/death_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/unittest/death_test.cpp b/src/mongo/unittest/death_test.cpp
index 1c12bb55699..0f1b79fb18e 100644
--- a/src/mongo/unittest/death_test.cpp
+++ b/src/mongo/unittest/death_test.cpp
@@ -117,7 +117,7 @@ void DeathTestImpl::_doTest() {
// We disable the creation of core dump files in the child process since the child process is
// expected to exit uncleanly. This avoids unnecessarily creating core dump files when the child
// process calls std::abort() or std::terminate().
- const struct rlimit kNoCoreDump{0U, 0U};
+ const struct rlimit kNoCoreDump { 0U, 0U };
checkSyscall(setrlimit(RLIMIT_CORE, &kNoCoreDump));
try {