summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yonle2023-07-15 00:39:42 +0700
committerGravatar Yonle2023-07-15 00:42:57 +0700
commit299886d8984686bb5f6c0e1135e191fcc9b63518 (patch)
tree9c77f37d5c62f7b2e95c970d8eaa5226323f0b12
parenthtml.c: Probably put placeholder on certain input and textboxes (diff)
downloadpenes-snac2-299886d8984686bb5f6c0e1135e191fcc9b63518.tar.gz
penes-snac2-299886d8984686bb5f6c0e1135e191fcc9b63518.tar.xz
penes-snac2-299886d8984686bb5f6c0e1135e191fcc9b63518.zip
utils.c: "User id" does not need "\n".
Signed-off-by: Yonle <yonle@lecturify.net>
-rw-r--r--utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index 648f9bf..fc102e4 100644
--- a/utils.c
+++ b/utils.c
@@ -225,7 +225,7 @@ int adduser(const char *uid)
225 FILE *f; 225 FILE *f;
226 226
227 if (uid == NULL) { 227 if (uid == NULL) {
228 printf("User id:\n"); 228 printf("Username: ");
229 uid = xs_strip_i(xs_readline(stdin)); 229 uid = xs_strip_i(xs_readline(stdin));
230 } 230 }
231 231