summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2023-03-13 08:47:31 +0100
committerErik Faye-Lund <erik.faye-lund@collabora.com>2023-03-13 08:51:46 +0100
commit658c28bf9cc4a9f1076839e77f65dd9ad799a683 (patch)
tree6a1c3722d6bf40d6cb5ca72006788a4a9a390bcd
parent193ebb12f400702e867122b939be659e3cb070c4 (diff)
downloadmesa-demos-658c28bf9cc4a9f1076839e77f65dd9ad799a683.tar.gz
meson: correct spelling
This spelling-error originates in Mesa, but we copied it when we copied the initial list of warning-disables here. Whoops, let's fix it! Reviewed-by: Hoe Hao Cheng <haochengho12907@gmail.com>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 29e5b41e..cbc6e469 100644
--- a/meson.build
+++ b/meson.build
@@ -177,7 +177,7 @@ if cc.get_argument_syntax() == 'msvc'
c_args += cc.get_supported_arguments([
'/wd4100', # 'var': unreferenced formal parameter
'/wd4244', # conversion from 'type1' to 'type2', possible loss of data
- '/wd4305', # trancation from 'type1' to 'type2'
+ '/wd4305', # truncation from 'type1' to 'type2'
'/wd4459', # declaration of 'var' hides global declaration
])
else