summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 14:40:54 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-09 14:40:54 +0100
commit073872266ac2bc33c4f518903f5459b3f5b0e430 (patch)
treeb07c15262927a8bf4322528a860c6cbec5981cf8
parent0f5ef8fabe73b51b0b59745b3381335996460737 (diff)
downloadATCD-073872266ac2bc33c4f518903f5459b3f5b0e430.tar.gz
Fixed maximum value
-rw-r--r--ACE/tests/New_Fail_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/New_Fail_Test.cpp b/ACE/tests/New_Fail_Test.cpp
index f1f94d8115c..09e804ebc75 100644
--- a/ACE/tests/New_Fail_Test.cpp
+++ b/ACE/tests/New_Fail_Test.cpp
@@ -31,7 +31,7 @@
// somewhere else in the test.
// Most we can do on Windows, else we get a C2148 compile error
-static constexpr size_t BIG_BLOCK = 0x7ffffffff - 1;
+static constexpr size_t BIG_BLOCK = 0x7fffffff - 1;
// Shouldn't take many "as much as possible" tries to get a failure.
static constexpr int MAX_ALLOCS_IN_TEST = 20;