diff options
Diffstat (limited to 'misc/getpass.c')
-rw-r--r-- | misc/getpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/getpass.c b/misc/getpass.c index a6e568ac08..5290c3c7d3 100644 --- a/misc/getpass.c +++ b/misc/getpass.c @@ -91,7 +91,7 @@ getpass (prompt) tty_changed = 0; /* Write the prompt. */ - __fxprintf (out, "%s", L"%s", prompt); + __fxprintf (out, "%s", prompt); fflush_unlocked (out); /* Read the password. */ @@ -106,7 +106,7 @@ getpass (prompt) buf[nread - 1] = '\0'; if (tty_changed) /* Write the newline that was not echoed. */ - __fxprintf (out, "%c", L"%c", '\n'); + __fxprintf (out, "\n"); } } |