From 61d53637dc62d15f9b3d1fa9e69891313c465c35 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 13 Feb 2023 13:48:00 -0500 Subject: Fix check for posix_fadvise --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index ddef9fe2..7fadf872 100644 --- a/meson.build +++ b/meson.build @@ -81,7 +81,7 @@ else endif if cc.links( template.format('fcntl.h', - 'posix_fadvise(0, 0, 4096, POSIX_FADV_SEQUENTIAL))'), + 'posix_fadvise(0, 0, 4096, POSIX_FADV_SEQUENTIAL)'), args: system_c_args, name: 'posix_fadvise') platform_c_args += ['-DHAVE_POSIX_FADVISE'] -- cgit v1.2.1