From: Yu Watanabe Date: Mon, 7 Apr 2025 07:52:04 +0000 (+0900) Subject: pcre2-util: fix typo X-Git-Tag: v258-rc1~887 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0deacdd5c7190db89ddab6585a5833c089f19b2;p=thirdparty%2Fsystemd.git pcre2-util: fix typo Follow-up for 5517e214c8e6a18decf54884c9a5566fd7236764. --- diff --git a/src/shared/pcre2-util.c b/src/shared/pcre2-util.c index 206d5537f80..1c7834b2906 100644 --- a/src/shared/pcre2-util.c +++ b/src/shared/pcre2-util.c @@ -35,7 +35,7 @@ int dlopen_pcre2(void) { /* So here's something weird: PCRE2 actually renames the symbols exported by the library via C * macros, so that the exported symbols carry a suffix "_8" but when used from C the suffix is * gone. In the argument list below we ignore this mangling. Surprisingly (at least to me), we - * actually get away with that. That's because DLSYM_ARG() useses STRINGIFY() to generate a string + * actually get away with that. That's because DLSYM_ARG() uses STRINGIFY() to generate a string * version of the symbol name, and that resolves the macro mapping implicitly already, so that the * string actually contains the "_8" suffix already due to that and we don't have to append it * manually anymore. C is weird. 🤯 */