[Sanitizer] fix compilation for Windows
authorAlexey Samsonov <samsonov@google.com>
Thu, 14 Mar 2013 11:29:06 +0000 (11:29 +0000)
committerAlexey Samsonov <samsonov@google.com>
Thu, 14 Mar 2013 11:29:06 +0000 (11:29 +0000)
llvm-svn: 177054

compiler-rt/lib/sanitizer_common/sanitizer_win.cc

index c657341..614c420 100644 (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 {