This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=8c7c835f9ba939b705f8494eb32ce45548b95f8f commit 8c7c835f9ba939b705f8494eb32ce45548b95f8f Author: Guillem Jover <[email protected]> AuthorDate: Thu Aug 11 02:13:26 2022 +0200 libdpkg: Fix type name for AIX dpkg_get_progname() implementation Fixes: commit 679760fd15900471faddfccb3a50bc0992073acc --- lib/dpkg/progname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpkg/progname.c b/lib/dpkg/progname.c index 92cabcedd..65592cc25 100644 --- a/lib/dpkg/progname.c +++ b/lib/dpkg/progname.c @@ -77,7 +77,7 @@ dpkg_get_progname(void) /* getexecname(3) returns an absolute path, normalize it. */ dpkg_set_progname(getexecname()); #elif defined(HAVE_GETPROCS64) - struct progentry64 pe; + struct procentry64 pe; pid_t pid = getpid(); if (getprocs64(&pe, sizeof(pe), NULL, 0, &pid, 1) >= 0) -- Dpkg.Org's dpkg

