summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2020-06-18 09:11:25 +0200
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2020-06-18 11:08:26 -0300
commit14e7fbf074c572072de4ff3e754f9a9582f33a15 (patch)
treedb9e7827f3c284bf59fb28eca40645812ec63221
parent3785afb1021b2f7dd3b428d27b2332be7af5f741 (diff)
downloadglade-14e7fbf074c572072de4ff3e754f9a9582f33a15.tar.gz
build: Fix va_copy check
There is a misplaced closing parenthesis in `va_copy` check that triggers a warning in meson. It has been fixed by placing it properly.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f623e451..b3aad2f3 100644
--- a/meson.build
+++ b/meson.build
@@ -119,7 +119,7 @@ va_copy_src = '''
};
'''
-if not cc.links(va_copy_src.format('va_copy', name: 'how to copy va_list'))
+if not cc.links(va_copy_src.format('va_copy'), name: 'how to copy va_list')
if cc.links(va_copy_src.format('__va_copy'))
config_h.set('va_copy', '__va_copy')
else