From: Paul Floyd Date: Sun, 26 Oct 2025 08:33:32 +0000 (+0100) Subject: regtest: fix typo in previous commmit that was supposed to fix deprecated declaration... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce61b07f4bd0340ffd7b069316b1d475eec8e775;p=thirdparty%2Fvalgrind.git regtest: fix typo in previous commmit that was supposed to fix deprecated declaration warnings I even managed to copy the line 3 more times without noticing. --- diff --git a/helgrind/tests/Makefile.am b/helgrind/tests/Makefile.am index 152d0aabe..5b6c581ed 100644 --- a/helgrind/tests/Makefile.am +++ b/helgrind/tests/Makefile.am @@ -282,8 +282,7 @@ bug392331_CXXFLAGS = $(AM_CXXFLAGS) -std=c++17 endif tc09_bad_unlock_CFLAGS = ${AM_CFLAGS} @FLAG_W_NO_UNUSED_BUT_SET_VARIABLE@ -tc17_sembar_CFLAGS = ${AM_CGLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ -tc18_semabuse_CFLAGS = ${AM_CGLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ -tc23_bogus_condwait_CFLAGS = ${AM_CGLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ -tc24_nonzero_sem_CFLAGS = ${AM_CGLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ - +tc17_sembar_CFLAGS = ${AM_CFLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ +tc18_semabuse_CFLAGS = ${AM_CFLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ +tc23_bogus_condwait_CFLAGS = ${AM_CFLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@ +tc24_nonzero_sem_CFLAGS = ${AM_CFLAGS} @FLAG_W_NO_DEPRECATED_DECLARATIONS@