aboutsummaryrefslogtreecommitdiff
path: root/src/getpass.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2005-12-13 18:54:31 +0000
committerDan Fandrich <dan@coneharvesters.com>2005-12-13 18:54:31 +0000
commite2df946eee5cc05ff11d841fae8afdc9ad5d4852 (patch)
treeb688f4807e353676d701cb86a7e316e2e0c8377b /src/getpass.c
parentd14588120f4f7634f56ada128f8f298bef21152f (diff)
Fixed some compiler warnings on lcc.
Diffstat (limited to 'src/getpass.c')
-rw-r--r--src/getpass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getpass.c b/src/getpass.c
index a5fa3575b..6db1e8477 100644
--- a/src/getpass.c
+++ b/src/getpass.c
@@ -203,7 +203,7 @@ char *getpass_r(const char *prompt, /* prompt to display */
if(disabled) {
/* if echo actually was disabled, add a newline */
fputs("\n", stderr);
- ttyecho(TRUE, fd); /* enable echo */
+ (void)ttyecho(TRUE, fd); /* enable echo */
}
if(1 != fd)