From: Paul Eggert Date: Sat, 2 Aug 2025 17:25:13 +0000 (-0700) Subject: Shorten GCC bug URLs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2410984b5bd06e4548dfbc09c85eee35e268e3dc;p=thirdparty%2Fgnulib.git Shorten GCC bug URLs --- diff --git a/build-aux/gcc-warning.spec b/build-aux/gcc-warning.spec index e147f49149..926895883a 100644 --- a/build-aux/gcc-warning.spec +++ b/build-aux/gcc-warning.spec @@ -354,7 +354,7 @@ -Wstringop-overread default -Wstringop-truncation default -Wsubobject-linkage c++ and objc++ --Wsuggest-attribute=returns_nonnull https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114833 +-Wsuggest-attribute=returns_nonnull https://gcc.gnu.org/PR114833 -Wsuggest-override c++ and objc++ -Wsurprising fortran -Wswitch enabled by -Wall diff --git a/doc/posix-headers/stddef.texi b/doc/posix-headers/stddef.texi index 7f7af3bdef..74516edba9 100644 --- a/doc/posix-headers/stddef.texi +++ b/doc/posix-headers/stddef.texi @@ -46,7 +46,7 @@ GCC 12, Clang 15, and other pre-2023 C compilers. @item Some platforms define @code{nullptr_t} even when @code{} is not included: -@c https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114869 +@c https://gcc.gnu.org/PR114869 GCC 14 @item diff --git a/lib/alignalloc.h b/lib/alignalloc.h index 2cd4050753..15974b5cbb 100644 --- a/lib/alignalloc.h +++ b/lib/alignalloc.h @@ -53,7 +53,7 @@ extern "C" { #endif /* Work around AddressSanitizer bug. - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104262 + https://gcc.gnu.org/PR104262 https://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20220124/1001910.html */ #ifdef __SANITIZE_ADDRESS__ diff --git a/lib/c++defs.h b/lib/c++defs.h index df98a5ae57..b77979a325 100644 --- a/lib/c++defs.h +++ b/lib/c++defs.h @@ -310,7 +310,7 @@ _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) # define _GL_CXXALIASWARN_1(func,namespace) \ _GL_CXXALIASWARN_2 (func, namespace) -/* To work around GCC bug , +/* To work around GCC bug , we enable the warning only when not optimizing. */ # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) # define _GL_CXXALIASWARN_2(func,namespace) \ @@ -338,7 +338,7 @@ GNULIB_NAMESPACE) # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) -/* To work around GCC bug , +/* To work around GCC bug , we enable the warning only when not optimizing. */ # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ diff --git a/lib/careadlinkat.c b/lib/careadlinkat.c index 9ec3ca3322..8f4a3c1a70 100644 --- a/lib/careadlinkat.c +++ b/lib/careadlinkat.c @@ -45,7 +45,7 @@ enum { STACK_BUF_SIZE = 1024 }; If GCC_LINT is defined, do not inline this function with GCC 10.1 and later, to avoid creating a pointer to the stack that GCC -Wreturn-local-addr incorrectly complains about. See: - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93644 + https://gcc.gnu.org/PR93644 Although the noinline attribute can hurt performance a bit, no better way to pacify GCC is known; even an explicit #pragma does not pacify GCC. When the GCC bug is fixed this workaround should be limited to the @@ -174,7 +174,7 @@ careadlinkat (int fd, char const *filename, shrinking realloc. */ #ifdef GCC_BOGUS_WRETURN_LOCAL_ADDR #warning "GCC might issue a bogus -Wreturn-local-addr warning here." - #warning "See ." + #warning "See ." #endif char stack_buf[STACK_BUF_SIZE]; return readlink_stk (fd, filename, buffer, buffer_size, alloc, diff --git a/lib/float.in.h b/lib/float.in.h index ab7ea6d561..3093f9a01d 100644 --- a/lib/float.in.h +++ b/lib/float.in.h @@ -135,7 +135,7 @@ extern const union gl_long_double_union gl_LDBL_MAX; which represents 0x1.fffffffffffff7ffffffffffff8p+1023L. Although computations can yield representations of numbers larger than this, these computations are considered to have overflowed and behavior is undefined. - See . */ + See . */ # undef LDBL_MAX # define LDBL_MAX 0x1.fffffffffffff7ffffffffffff8p+1023L @@ -234,7 +234,7 @@ extern const union gl_long_double_union gl_LDBL_TRUE_MIN; # define FLT_NORM_MAX FLT_MAX #endif #ifndef FLT_SNAN -/* For sh, beware of . */ +/* For sh, beware of . */ # if ((__GNUC__ + (__GNUC_MINOR__ >= 3) > 3) || defined __clang__) && !defined __sh__ # define FLT_SNAN __builtin_nansf ("") # else @@ -258,7 +258,7 @@ extern gl_FLT_SNAN_t gl_FLT_SNAN; # define DBL_NORM_MAX DBL_MAX #endif #ifndef DBL_SNAN -/* For sh, beware of . */ +/* For sh, beware of . */ # if ((__GNUC__ + (__GNUC_MINOR__ >= 3) > 3) || defined __clang__) && !defined __sh__ # define DBL_SNAN __builtin_nans ("") # else @@ -290,7 +290,7 @@ extern gl_DBL_SNAN_t gl_DBL_SNAN; # endif #endif #ifndef LDBL_SNAN -/* For sh, beware of . */ +/* For sh, beware of . */ # if ((__GNUC__ + (__GNUC_MINOR__ >= 3) > 3) || defined __clang__) && !defined __sh__ # define LDBL_SNAN __builtin_nansl ("") # else diff --git a/lib/free.c b/lib/free.c index 98ceafd7da..394d8d1390 100644 --- a/lib/free.c +++ b/lib/free.c @@ -33,7 +33,7 @@ rpl_free (void *p) { # if defined __GNUC__ && !defined __clang__ /* An invalid GCC optimization - + would optimize away the assignments in the code below, when link-time optimization (LTO) is enabled. Make the code more complicated, so that GCC does not grok how to optimize it. */ diff --git a/lib/intprops-internal.h b/lib/intprops-internal.h index 62de3c889e..ab1a94f86d 100644 --- a/lib/intprops-internal.h +++ b/lib/intprops-internal.h @@ -112,7 +112,7 @@ #elif defined __has_builtin # define _GL_HAS_BUILTIN_ADD_OVERFLOW __has_builtin (__builtin_add_overflow) /* __builtin_{add,sub}_overflow exists but is not reliable in GCC 5.x and 6.x, - see . */ + see . */ #elif 7 <= __GNUC__ # define _GL_HAS_BUILTIN_ADD_OVERFLOW 1 #else @@ -184,7 +184,7 @@ #endif /* Nonzero if this compiler has GCC bug 68193 or Clang bug 25390. See: - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68193 + https://gcc.gnu.org/PR68193 https://llvm.org/bugs/show_bug.cgi?id=25390 For now, assume GCC < 14 and all Clang versions generate bogus warnings for _Generic. This matters only for compilers that diff --git a/lib/realloc.c b/lib/realloc.c index 4237501097..62efd5a39f 100644 --- a/lib/realloc.c +++ b/lib/realloc.c @@ -50,7 +50,7 @@ rpl_realloc (void *p, size_t n) undefined behavior even though C17 and earlier partially defined the behavior. Let the programmer know. When the undefined-behaviour sanitizers report this case, i.e. when - and + and have been closed and new releases of GCC and clang have been made, we can revisit this code. */ diff --git a/lib/savedir.c b/lib/savedir.c index 40e3b8cebc..2e4f6f9a7c 100644 --- a/lib/savedir.c +++ b/lib/savedir.c @@ -41,7 +41,7 @@ #include "attribute.h" #include "xalloc.h" -/* Pacify GCC bug . */ +/* Pacify GCC bug . */ #if _GL_GNUC_PREREQ (13, 0) # pragma GCC diagnostic ignored "-Wanalyzer-malloc-leak" # pragma GCC diagnostic ignored "-Wanalyzer-null-dereference" diff --git a/lib/signed-nan.h b/lib/signed-nan.h index fcc12d34cf..41360db556 100644 --- a/lib/signed-nan.h +++ b/lib/signed-nan.h @@ -53,7 +53,7 @@ _GL_UNUSED static float positive_NaNf () { /* 'volatile' works around a GCC bug: - */ + */ float volatile nan = NaNf (); return (signbit (nan) ? minus_NaNf (nan) : nan); } @@ -63,7 +63,7 @@ _GL_UNUSED static float negative_NaNf () { /* 'volatile' works around a GCC bug: - */ + */ float volatile nan = NaNf (); return (signbit (nan) ? nan : minus_NaNf (nan)); } @@ -91,7 +91,7 @@ _GL_UNUSED static double positive_NaNd () { /* 'volatile' works around a GCC bug: - */ + */ double volatile nan = NaNd (); return (signbit (nan) ? minus_NaNd (nan) : nan); } @@ -101,7 +101,7 @@ _GL_UNUSED static double negative_NaNd () { /* 'volatile' works around a GCC bug: - */ + */ double volatile nan = NaNd (); return (signbit (nan) ? nan : minus_NaNd (nan)); } @@ -120,7 +120,7 @@ _GL_UNUSED static long double positive_NaNl () { /* 'volatile' works around a GCC bug: - */ + */ long double volatile nan = NaNl (); return (signbit (nan) ? minus_NaNl (nan) : nan); } @@ -130,7 +130,7 @@ _GL_UNUSED static long double negative_NaNl () { /* 'volatile' works around a GCC bug: - */ + */ long double volatile nan = NaNl (); return (signbit (nan) ? nan : minus_NaNl (nan)); } diff --git a/lib/stddef.in.h b/lib/stddef.in.h index e8c55ff1cd..9ad768d785 100644 --- a/lib/stddef.in.h +++ b/lib/stddef.in.h @@ -32,7 +32,7 @@ || defined __need_wint_t) \ /* Avoid warning triggered by "gcc -std=gnu23 -Wsystem-headers" \ in GCC 13.3 and 14.2 \ - . */ \ + . */ \ && !@STDDEF_NOT_IDEMPOTENT@ /* Special invocation convention inside gcc header files. In particular, in some ancient versions of GCC blindly @@ -91,7 +91,7 @@ typedef long max_align_t; # if !defined _GCC_NULLPTR_T && !@NULLPTR_T_NEEDS_STDDEF@ /* Suppress unwanted nullptr_t typedef. See - . */ + . */ # define _GCC_NULLPTR_T # endif diff --git a/lib/strftime.c b/lib/strftime.c index 537172d8be..27e2ca0976 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -355,7 +355,7 @@ enum pad_style /* Avoid false GCC warning "'memset' specified size 18446744073709551615 exceeds maximum object size 9223372036854775807", caused by insufficient data flow analysis and value propagation of the 'width_add' expansion when GCC is not - optimizing. Cf. . */ + optimizing. Cf. . */ #if _GL_GNUC_PREREQ (7, 0) && !__OPTIMIZE__ # pragma GCC diagnostic ignored "-Wstringop-overflow" #endif diff --git a/lib/string.in.h b/lib/string.in.h index 9a039c7ba0..4333055993 100644 --- a/lib/string.in.h +++ b/lib/string.in.h @@ -96,7 +96,7 @@ /* Applies to: functions. Cannot be used on inline functions. */ #ifndef _GL_ATTRIBUTE_DEALLOC_FREE # if defined __cplusplus && defined __GNUC__ && !defined __clang__ -/* Work around GCC bug */ +/* Work around GCC bug */ # define _GL_ATTRIBUTE_DEALLOC_FREE \ _GL_ATTRIBUTE_DEALLOC ((void (*) (void *)) free, 1) # else diff --git a/lib/totalorder.c b/lib/totalorder.c index 5824da836f..0da878d54a 100644 --- a/lib/totalorder.c +++ b/lib/totalorder.c @@ -60,7 +60,7 @@ totalorder (double const *x, double const *y) # if defined __GNUC__ || defined __clang__ /* Prevent gcc and clang from reusing the values of *x and *y (fetched above) in optimized inlined memcpy expansions. - Seen with gcc + Seen with gcc and with clang 16.0.6 on OpenBSD 7.5. */ __asm__ __volatile__ ("" : : : "memory"); # endif diff --git a/lib/totalorderf.c b/lib/totalorderf.c index 88c8580f9d..ae4a2b3c98 100644 --- a/lib/totalorderf.c +++ b/lib/totalorderf.c @@ -60,7 +60,7 @@ totalorderf (float const *x, float const *y) # if defined __GNUC__ || defined __clang__ /* Prevent gcc and clang from reusing the values of *x and *y (fetched above) in optimized inlined memcpy expansions. - Seen with gcc + Seen with gcc and with clang 16.0.6 on OpenBSD 7.5. */ __asm__ __volatile__ ("" : : : "memory"); # endif diff --git a/lib/totalordermag.c b/lib/totalordermag.c index 3893ccf94d..68f5becec2 100644 --- a/lib/totalordermag.c +++ b/lib/totalordermag.c @@ -60,7 +60,7 @@ totalordermag (double const *x, double const *y) # if defined __GNUC__ || defined __clang__ /* Prevent gcc and clang from reusing the values of *x and *y (fetched above) in optimized inlined memcpy expansions. - Seen with gcc + Seen with gcc and with clang 16.0.6 on OpenBSD 7.5. */ __asm__ __volatile__ ("" : : : "memory"); # endif diff --git a/lib/totalordermagf.c b/lib/totalordermagf.c index b6879e2d27..9fec2cf7fc 100644 --- a/lib/totalordermagf.c +++ b/lib/totalordermagf.c @@ -60,7 +60,7 @@ totalordermagf (float const *x, float const *y) # if defined __GNUC__ || defined __clang__ /* Prevent gcc and clang from reusing the values of *x and *y (fetched above) in optimized inlined memcpy expansions. - Seen with gcc + Seen with gcc and with clang 16.0.6 on OpenBSD 7.5. */ __asm__ __volatile__ ("" : : : "memory"); # endif diff --git a/lib/wchar.in.h b/lib/wchar.in.h index a6c52eb9c6..23d8b3c5bf 100644 --- a/lib/wchar.in.h +++ b/lib/wchar.in.h @@ -110,7 +110,7 @@ /* Applies to: functions. Cannot be used on inline functions. */ #ifndef _GL_ATTRIBUTE_DEALLOC_FREE # if defined __cplusplus && defined __GNUC__ && !defined __clang__ -/* Work around GCC bug */ +/* Work around GCC bug */ # define _GL_ATTRIBUTE_DEALLOC_FREE \ _GL_ATTRIBUTE_DEALLOC ((void (*) (void *)) free, 1) # else diff --git a/m4/btowc.m4 b/m4/btowc.m4 index 59d52be6f6..fd18db753e 100644 --- a/m4/btowc.m4 +++ b/m4/btowc.m4 @@ -13,7 +13,7 @@ AC_DEFUN([gl_FUNC_BTOWC], dnl Check whether is usable at all, first. Otherwise the test dnl program below may lead to an endless loop. See - dnl . + dnl . AC_REQUIRE([gl_WCHAR_H_INLINE_OK]) AC_CHECK_FUNCS_ONCE([btowc]) diff --git a/m4/extern-inline.m4 b/m4/extern-inline.m4 index d4fe6d82a5..0ebcba3475 100644 --- a/m4/extern-inline.m4 +++ b/m4/extern-inline.m4 @@ -112,8 +112,8 @@ AC_DEFUN([gl_EXTERN_INLINE], suppress bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see - and - . */ + and + . */ #if __GNUC__ == 4 && 6 <= __GNUC_MINOR__ # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA diff --git a/m4/gnulib-common.m4 b/m4/gnulib-common.m4 index 034dae69e6..134bfba21d 100644 --- a/m4/gnulib-common.m4 +++ b/m4/gnulib-common.m4 @@ -168,7 +168,7 @@ AC_DEFUN([gl_COMMON_BODY], [ ====================================================================== This gives a syntax error - in C mode with gcc - , and + , and - in C++ mode with clang++ version < 16, and - in C++ mode, inside extern "C" {}, still in newer clang++ versions . @@ -451,7 +451,7 @@ AC_DEFUN([gl_COMMON_BODY], [ yet. */ #ifndef _GL_ATTRIBUTE_DEALLOC_FREE # if defined __cplusplus && defined __GNUC__ && !defined __clang__ -/* Work around GCC bug */ +/* Work around GCC bug */ # define _GL_ATTRIBUTE_DEALLOC_FREE \ _GL_ATTRIBUTE_DEALLOC ((void (*) (void *)) free, 1) # else diff --git a/m4/manywarnings.m4 b/m4/manywarnings.m4 index eebba90180..bb5b4e10cd 100644 --- a/m4/manywarnings.m4 +++ b/m4/manywarnings.m4 @@ -198,7 +198,7 @@ AC_DEFUN([gl_MANYWARN_ALL_GCC(C)], fi # This warning have too many false alarms in GCC 11.2.1. - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101713 + # https://gcc.gnu.org/PR101713 AS_VAR_APPEND([$1], [' -Wno-analyzer-malloc-leak']) AC_LANG_POP([C]) diff --git a/m4/nullptr.m4 b/m4/nullptr.m4 index aa457ed2b6..2c0bdde8aa 100644 --- a/m4/nullptr.m4 +++ b/m4/nullptr.m4 @@ -16,7 +16,7 @@ AC_DEFUN([gl_NULLPTR], [AC_COMPILE_IFELSE( [AC_LANG_SOURCE([[int *p = nullptr;]])], [gl_cv_c_nullptr=yes - # Work around . + # Work around . gl_saved_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wall -Werror" AC_COMPILE_IFELSE( diff --git a/m4/stdalign.m4 b/m4/stdalign.m4 index 885feafdd8..d22360e107 100644 --- a/m4/stdalign.m4 +++ b/m4/stdalign.m4 @@ -30,7 +30,7 @@ AC_DEFUN([gl_ALIGNASOF], /* Test that alignof yields a result consistent with offsetof. This catches GCC bug 52023 - . */ + . */ #ifdef __cplusplus template struct alignof_helper { char a; t b; }; # define ao(type) offsetof (alignof_helper, b) @@ -103,7 +103,7 @@ AC_DEFUN([gl_ALIGNASOF], want to be portable to HP-UX 10.20 cc and AIX 3.2.5 xlc. */ /* GCC releases before GCC 4.9 had a bug in _Alignof. See GCC bug 52023 - . + . clang versions < 8.0.0 have the same bug. IBM XL C V16.1.0 cc (non-clang) has the same bug. */ # if (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112 \ diff --git a/m4/stddef_h.m4 b/m4/stddef_h.m4 index 127ec05b60..d52d549489 100644 --- a/m4/stddef_h.m4 +++ b/m4/stddef_h.m4 @@ -85,7 +85,7 @@ AC_DEFUN_ONCE([gl_STDDEF_H], dnl Provide gl_unreachable() unconditionally. GL_GENERATE_STDDEF_H=true - dnl https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114869 + dnl https://gcc.gnu.org/PR114869 AC_CACHE_CHECK([whether nullptr_t needs ], [gl_cv_nullptr_t_needs_stddef], [AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[nullptr_t x;]], @@ -96,7 +96,7 @@ AC_DEFUN_ONCE([gl_STDDEF_H], GL_GENERATE_STDDEF_H=true fi - dnl https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114870 + dnl https://gcc.gnu.org/PR114870 dnl affects GCC 13.3 and 14.2. AC_CACHE_CHECK([whether is idempotent], [gl_cv_stddef_idempotent], diff --git a/m4/wchar_h.m4 b/m4/wchar_h.m4 index 053bafd2f3..f88294e7c4 100644 --- a/m4/wchar_h.m4 +++ b/m4/wchar_h.m4 @@ -66,7 +66,7 @@ AC_DEFUN([gl_WCHAR_H_INLINE_OK], [ dnl Test whether suffers due to the transition from '__inline' to dnl 'gnu_inline'. See - dnl and . In summary, + dnl and . In summary, dnl glibc version 2.5 or older, together with gcc version 4.3 or newer and dnl the option -std=c99 or -std=gnu99, leads to a broken . AC_REQUIRE([AC_CANONICAL_HOST]) diff --git a/modules/uniname/uniname b/modules/uniname/uniname index d0951d8472..5813e92ada 100644 --- a/modules/uniname/uniname +++ b/modules/uniname/uniname @@ -19,7 +19,7 @@ gl_LIBUNISTRING_MODULE([1.3], [uniname/uniname]) Makefile.am: if LIBUNISTRING_COMPILE_UNINAME_UNINAME # Note: Compilation of this file takes a long time with gcc ≥ 11 and option -# -fanalyzer. See . +# -fanalyzer. See . # The best workaround is to install GNU libunistring first, and use module # 'libunistring-optional' in your package. # An alternative workaround would be to pass the option -fno-analyzer, using diff --git a/tests/test-canonicalize-lgpl.c b/tests/test-canonicalize-lgpl.c index 5450bb9b14..84f94f232d 100644 --- a/tests/test-canonicalize-lgpl.c +++ b/tests/test-canonicalize-lgpl.c @@ -125,7 +125,7 @@ main (void) /* This test works only if the canonicalize_file_name implementation comes from gnulib. If it comes from libc, we have no way to prevent gcc from "optimizing" the null_ptr function in invalid ways. See - . */ + . */ #if GNULIB_defined_canonicalize_file_name errno = 0; result = canonicalize_file_name (null_ptr ()); diff --git a/tests/test-canonicalize.c b/tests/test-canonicalize.c index 083bf1703a..662f9b0762 100644 --- a/tests/test-canonicalize.c +++ b/tests/test-canonicalize.c @@ -129,7 +129,7 @@ main (void) /* This test works only if the canonicalize_file_name implementation comes from gnulib. If it comes from libc, we have no way to prevent gcc from "optimizing" the null_ptr function in invalid ways. See - . */ + . */ #if GNULIB_defined_canonicalize_file_name errno = 0; result1 = canonicalize_file_name (null_ptr ()); diff --git a/tests/test-intprops.c b/tests/test-intprops.c index d16b67b5ce..cce1386e24 100644 --- a/tests/test-intprops.c +++ b/tests/test-intprops.c @@ -26,7 +26,7 @@ # pragma GCC diagnostic ignored "-Wtype-limits" /* Work around a bug in GCC 6.1 and earlier; see: - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68971 */ + https://gcc.gnu.org/PR68971 */ # pragma GCC diagnostic ignored "-Woverflow" #endif diff --git a/tests/test-ptsname_r.c b/tests/test-ptsname_r.c index 270ff86a9d..b793805542 100644 --- a/tests/test-ptsname_r.c +++ b/tests/test-ptsname_r.c @@ -95,7 +95,7 @@ test_errors (int fd, const char *slave) /* This test works only if the ptsname_r implementation comes from gnulib. If it comes from libc, we have no way to prevent gcc from "optimizing" the null_ptr function in invalid ways. See - . */ + . */ #if GNULIB_defined_ptsname_r result = ptsname_r (fd, null_ptr (), 0); ASSERT (result != 0); diff --git a/tests/test-sprintf-posix.h b/tests/test-sprintf-posix.h index f60a6e0a05..0b5110519d 100644 --- a/tests/test-sprintf-posix.h +++ b/tests/test-sprintf-posix.h @@ -3168,7 +3168,7 @@ test_function (int (*my_sprintf) (char *, const char *, ...)) /* This test is known to fail - on musl libc, - with GCC 14.1, 13.2, 12.3, and 11.4 - */ + */ ASSERT (memcmp (result, "a\0z 33\0", 6 + 1) == 0); ASSERT (retval == 6); }