From 5cc86571a6df707007347d47d60da4da2b903a74 Mon Sep 17 00:00:00 2001 From: Charlotte Meyer Date: Fri, 3 May 2019 10:54:08 +0200 Subject: [PATCH] Fix indentation in meson.build --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index c7ec6e6..dee23c4 100644 --- a/meson.build +++ b/meson.build @@ -39,9 +39,9 @@ add_project_arguments('-DKIWMI_VERSION=@0@'.format(version), language: 'c') compiler = meson.get_compiler('c') if compiler.get_id() == 'gcc' or compiler.get_id() == 'clang' - add_project_arguments('-DUNUSED(x)=UNUSED_ ## x __attribute__((__unused__))', language: 'c') + add_project_arguments('-DUNUSED(x)=UNUSED_ ## x __attribute__((__unused__))', language: 'c') else - add_project_arguments('-DUNUSED(x)=UNUSED_ ## x', language: 'c') + add_project_arguments('-DUNUSED(x)=UNUSED_ ## x', language: 'c') endif subdir('kiwmi')