Disable the correct warning

I realized that I wrote the wrong warning code when I use Bazel from master branch and build something with MSVC.

For the curious:

- C4117: https://msdn.microsoft.com/en-us/library/9d2szxf8.aspx
- C4177: https://msdn.microsoft.com/en-us/library/s4becxs9.aspx

/cc @meteorcloudy

Closes #5631.

PiperOrigin-RevId: 207235606
diff --git a/tools/cpp/CROSSTOOL.tpl b/tools/cpp/CROSSTOOL.tpl
index abeb2a2..2004282 100644
--- a/tools/cpp/CROSSTOOL.tpl
+++ b/tools/cpp/CROSSTOOL.tpl
@@ -962,7 +962,7 @@
         # Make C++ compilation deterministic. Use linkstamping instead of these
         # compiler symbols.
         # TODO: detect clang on Windows and use "-Wno-builtin-macro-redefined"
-        flag: "/wd4177" # Trying to define or undefine a predefined macro
+        flag: "/wd4117" # Trying to define or undefine a predefined macro
         flag: "-D__DATE__=\"redacted\""
         flag: "-D__TIMESTAMP__=\"redacted\""
         flag: "-D__TIME__=\"redacted\""