[Sanitizer] fix compilation for Windows

llvm-svn: 177054
This commit is contained in:
Alexey Samsonov 2013-03-14 11:29:06 +00:00
parent 5aa9d793c5
commit 7d2385419a
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ void *MapFileToMemory(const char *file_name, uptr *buff_size) {
UNIMPLEMENTED();
}
static const kMaxEnvNameLength = 128;
static const kMaxEnvValueLength = 32767;
static const int kMaxEnvNameLength = 128;
static const int kMaxEnvValueLength = 32767;
namespace {