This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=482d420fe0fdd9e077342fb82d29d69facbbf78b commit 482d420fe0fdd9e077342fb82d29d69facbbf78b Author: Guillem Jover <guil...@debian.org> AuthorDate: Thu Jul 12 03:23:08 2018 +0200 libdpkg: Fix dpkg_arch_find() Doxygen comment --- debian/changelog | 1 + lib/dpkg/arch.c | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index b1098d204..fa9812c87 100644 --- a/debian/changelog +++ b/debian/changelog @@ -164,6 +164,7 @@ dpkg (1.19.1) UNRELEASED; urgency=medium Closes: #904060 - Fix man page markup. Closes: #900033, #900035, #900040 Thanks to Bjarni Ingi Gislason <bjarn...@rhi.hi.is>. + - Fix Doxygen comment for libdpkg dpkg_arch_find() function. * Code internals: - Do not use stringy eval to define different sub implementations, just assign an anonymous sub to the typeglob. diff --git a/lib/dpkg/arch.c b/lib/dpkg/arch.c index 36b482972..83c6579f1 100644 --- a/lib/dpkg/arch.c +++ b/lib/dpkg/arch.c @@ -124,10 +124,11 @@ dpkg_arch_new(const char *name, enum dpkg_arch_type type) /** * Retrieve the struct dpkg_arch for the given architecture. * - * Create a new structure for the architecture if it's not yet known from - * the system, in that case it will have arch->type == arch_unknown, if the - * architecture is illegal it will have arch->type == arch_illegal and if - * name is NULL or an empty string then it will have arch->type == arch_none. + * Create a new structure for the architecture if it is not yet known from + * the system, in that case it will have type == DPKG_ARCH_UNKNOWN, if the + * architecture is illegal it will have type == DPKG_ARCH_ILLEGAL, if name + * is an empty string it will have type == DPKG_ARCH_EMPTY, and if it is + * NULL then it will have type == DPKG_ARCH_NONE. * * @param name The architecture name. */ -- Dpkg.Org's dpkg