From 1678a34f47707ff3c4d7dce021b891a136d8bf4c Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Wed, 14 Jul 2021 16:53:04 +0200 Subject: [PATCH] syntax-check: s/VIR_DIR_CLOSE/g_autoptr(DIR)/ We have a syntax-check rule that forbids explicit closedir(). However, the error message suggest using VIR_DIR_CLOSE() which was removed a few releases ago (v6.10.0-rc1~389). Signed-off-by: Michal Privoznik Reviewed-by: Peter Krempa --- build-aux/syntax-check.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/syntax-check.mk b/build-aux/syntax-check.mk index eda89f40ad..256f9f695a 100644 --- a/build-aux/syntax-check.mk +++ b/build-aux/syntax-check.mk @@ -472,7 +472,7 @@ sc_prohibit_gethostname: sc_prohibit_readdir: @prohibit='\b(read|close|open)dir *\(' \ exclude='exempt from syntax-check' \ - halt='use virDirOpen, virDirRead and VIR_DIR_CLOSE' \ + halt='use virDirOpen, virDirRead and g_autoptr(DIR)' \ $(_sc_search_regexp) sc_prohibit_gettext_noop: -- 2.47.2