[10/10] getgrent_r.3: Declare variables with different types in different lines

Message ID 20200925073140.173394-11-colomar.6.4.3@gmail.com
State Not applicable
Headers
Series Add types, and some fixes |

Commit Message

Alejandro Colomar Sept. 25, 2020, 7:31 a.m. UTC
  Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man3/getgrent_r.3 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Comments

Michael Kerrisk \(man-pages\) Sept. 25, 2020, 7:57 a.m. UTC | #1
On 9/25/20 9:31 AM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>

Thanks, Alex. Patch applied.

Cheers,

Michael

> ---
>  man3/getgrent_r.3 | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/man3/getgrent_r.3 b/man3/getgrent_r.3
> index 8170cd417..64d7f3ac1 100644
> --- a/man3/getgrent_r.3
> +++ b/man3/getgrent_r.3
> @@ -181,7 +181,8 @@ in the stream with all other threads.
>  int
>  main(void)
>  {
> -    struct group grp, *grpp;
> +    struct group grp;
> +    struct group *grpp;
>      char buf[BUFLEN];
>      int i;
>  
>
  

Patch

diff --git a/man3/getgrent_r.3 b/man3/getgrent_r.3
index 8170cd417..64d7f3ac1 100644
--- a/man3/getgrent_r.3
+++ b/man3/getgrent_r.3
@@ -181,7 +181,8 @@  in the stream with all other threads.
 int
 main(void)
 {
-    struct group grp, *grpp;
+    struct group grp;
+    struct group *grpp;
     char buf[BUFLEN];
     int i;