diff options
| author | 2023-07-15 00:39:42 +0700 | |
|---|---|---|
| committer | 2023-07-15 00:42:57 +0700 | |
| commit | 299886d8984686bb5f6c0e1135e191fcc9b63518 (patch) | |
| tree | 9c77f37d5c62f7b2e95c970d8eaa5226323f0b12 | |
| parent | html.c: Probably put placeholder on certain input and textboxes (diff) | |
| download | penes-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 | ||