diff options
author | Roland McGrath <roland@gnu.org> | 1998-10-20 08:38:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-10-20 08:38:41 +0000 |
commit | fc40a731d23f893be2cb7699d7e078568d4c210c (patch) | |
tree | 9f1c90570e03a7c4082bee3fca2ced1755ac98a0 /libshouldbeinlibc/idvec-rep.c | |
parent | 6b0d5d23a26adea266903f285f7424a2f93863cb (diff) |
Add braces to silence gcc warnings.
Diffstat (limited to 'libshouldbeinlibc/idvec-rep.c')
-rw-r--r-- | libshouldbeinlibc/idvec-rep.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/libshouldbeinlibc/idvec-rep.c b/libshouldbeinlibc/idvec-rep.c index 2fa1be03..b20e58ca 100644 --- a/libshouldbeinlibc/idvec-rep.c +++ b/libshouldbeinlibc/idvec-rep.c @@ -1,6 +1,6 @@ /* idvec string representation - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -95,13 +95,15 @@ idvec_rep (const struct idvec *idvec, int show_values, int show_names, uid_t val = idvec->ids[i]; if (i > 0) - if (ensure_room (sep_len)) - { - strcpy (rep + rep_len, sep); - rep_len += sep_len; - } - else - break; + { + if (ensure_room (sep_len)) + { + strcpy (rep + rep_len, sep); + rep_len += sep_len; + } + else + break; + } if (show_names || !show_values) name = (*id_name_fn) (val); |