using printf to avoid \n for pwd input message
This commit is contained in:
parent
0e62272c44
commit
586fa66c35
|
@ -8,7 +8,7 @@ int main() {
|
||||||
char *input_str = NULL;
|
char *input_str = NULL;
|
||||||
char *password = "23door42\n";
|
char *password = "23door42\n";
|
||||||
|
|
||||||
puts("Please enter Password: ");
|
printf("Please enter Password: ");
|
||||||
ret = getline(&input_str, &nbytes, stdin);
|
ret = getline(&input_str, &nbytes, stdin);
|
||||||
|
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
|
|
Loading…
Reference in a new issue