simplify parsing of /etc/busybox.conf
[platform/upstream/busybox.git] / libpwdgrp / uidgid_get.c
index 92290bf..8388be0 100644 (file)
@@ -71,7 +71,8 @@ int FAST_FUNC get_uidgid(struct bb_uidgid_t *u, const char *ug, int numeric_ok)
                        }
                }
                gr = getgrnam(group);
-               if (!gr) return 0;
+               if (!gr)
+                       return 0;
                u->gid = gr->gr_gid;
        }
        return 1;