]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
pcre2-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 7 Apr 2025 07:52:04 +0000 (16:52 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 7 Apr 2025 07:52:04 +0000 (16:52 +0900)
Follow-up for 5517e214c8e6a18decf54884c9a5566fd7236764.

src/shared/pcre2-util.c

index 206d5537f80f6f8b84133858136bb730ec2f22cc..1c7834b2906130e2de9eacda2ef1f3a548ff9455 100644 (file)
@@ -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. ðŸ¤¯ */