From 5c5c114fa290cd6c8e6153aa6ca033456d00dd97 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 13 Mar 2023 09:04:33 +0100 Subject: [PATCH] meson: correct typo in comment Reviewed-by: Eric Engestrom Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e6801c71bc3..2f329d0d110 100644 --- a/meson.build +++ b/meson.build @@ -956,7 +956,7 @@ if cc.get_argument_syntax() == 'msvc' '/wd4056', # overflow in floating-point constant arithmetic '/wd4244', # conversion from 'type1' to 'type2', possible loss of data '/wd4267', # 'var' : conversion from 'size_t' to 'type', possible loss of data - '/wd4305', # trancation from 'type1' to 'type2' + '/wd4305', # truncation from 'type1' to 'type2' '/wd4351', # new behavior: elements of array 'array' will be default initialized '/wd4756', # overflow in constant arithmetic '/wd4800', # forcing value to bool 'true' or 'false' (performance warning)