summaryrefslogtreecommitdiff
path: root/src/users.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/users.c')
-rw-r--r--src/users.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/users.c b/src/users.c
index 539de2089..d62fba853 100644
--- a/src/users.c
+++ b/src/users.c
@@ -385,11 +385,11 @@ User *find_byuid(const char *uid)
u = first_uid();
while (u) {
next = next_uid();
- if(u->uid) {
+ if (u->uid) {
if (!stricmp(uid, u->uid)) {
return u;
}
- }
+ }
u = next;
}
return NULL;