utils.c: "User id" does not need "\n".

Signed-off-by: Yonle <yonle@lecturify.net>
This commit is contained in:
Yonle 2023-07-15 00:39:42 +07:00
parent 1dc61ace13
commit 299886d898

View File

@ -225,7 +225,7 @@ int adduser(const char *uid)
FILE *f;
if (uid == NULL) {
printf("User id:\n");
printf("Username: ");
uid = xs_strip_i(xs_readline(stdin));
}