From: Alejandro Colomar Date: Thu, 10 Sep 2020 21:13:37 +0000 (+0200) Subject: getpwent_r.3: Declare variables with different types in different lines X-Git-Tag: man-pages-5.09~391 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e4e6e5e143b2b33fa5fa23f09fba921a043780d;p=thirdparty%2Fman-pages.git getpwent_r.3: Declare variables with different types in different lines Signed-off-by: Alejandro Colomar Signed-off-by: Michael Kerrisk --- diff --git a/man3/getpwent_r.3 b/man3/getpwent_r.3 index 64f27dbfbb..14f95bd287 100644 --- a/man3/getpwent_r.3 +++ b/man3/getpwent_r.3 @@ -184,7 +184,8 @@ in the stream with all other threads. int main(void) { - struct passwd pw, *pwp; + struct passwd pw; + struct passwd *pwp; char buf[BUFLEN]; int i;