patch 8.1.0159: completion for user names does not work for a prefix.

Problem:    Completion for user names does not work if a prefix is also a full
            matching name. (Nazri Ramliy)
Solution:   Accept both full and partial matches. (Dominique Pelle)
diff --git a/src/misc1.c b/src/misc1.c
index 5242ca5..f0e629b 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -4827,7 +4827,8 @@
  * 1 if name partially matches the beginning of a user name.
  * 2 is name fully matches a user name.
  */
-int match_user(char_u* name)
+    int
+match_user(char_u *name)
 {
     int i;
     int n = (int)STRLEN(name);