From e8dc13248eda9dda04cffdc68609e55989328ea3 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 25 Sep 2016 09:41:07 +0530 Subject: [PATCH] compilers: Fix typo in visual studio warning argument --- mesonbuild/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index aafaa7f28..877280347 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -1731,7 +1731,7 @@ class VisualStudioCCompiler(CCompiler): self.always_args = ['/nologo', '/showIncludes'] self.warn_args = {'1': ['/W2'], '2': ['/W3'], - '3': ['/w4']} + '3': ['/W4']} self.base_options = ['b_pch'] # FIXME add lto, pgo and the like def get_always_args(self):