summaryrefslogtreecommitdiffstats
path: root/src/shared/dlfcn-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-06-22 09:26:09 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-06-24 10:20:29 +0200
commitcd503dbb6b4a6a6d505ce3ba2d449e418e5c415c (patch)
treeccfbf2b13c668279e77d733a131bc973ddac7c53 /src/shared/dlfcn-util.c
parentshared/tpm2-util: simplify and convert to the new helper (diff)
downloadsystemd-cd503dbb6b4a6a6d505ce3ba2d449e418e5c415c.tar.xz
systemd-cd503dbb6b4a6a6d505ce3ba2d449e418e5c415c.zip
shared/dlfcn-util: add sentinel helper or for dlsym_many_or_warn()
I didn't do this before to avoid churn in all the users.
Diffstat (limited to 'src/shared/dlfcn-util.c')
-rw-r--r--src/shared/dlfcn-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/dlfcn-util.c b/src/shared/dlfcn-util.c
index c027e3396b..a321df3c67 100644
--- a/src/shared/dlfcn-util.c
+++ b/src/shared/dlfcn-util.c
@@ -26,7 +26,7 @@ static int dlsym_many_or_warnv(void *dl, int log_level, va_list ap) {
return 0;
}
-int dlsym_many_or_warn(void *dl, int log_level, ...) {
+int dlsym_many_or_warn_sentinel(void *dl, int log_level, ...) {
va_list ap;
int r;