summaryrefslogtreecommitdiff
path: root/crypto/ui/ui_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ui/ui_util.c')
-rw-r--r--crypto/ui/ui_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ui/ui_util.c b/crypto/ui/ui_util.c
index 7249a077d8..b379324f9b 100644
--- a/crypto/ui/ui_util.c
+++ b/crypto/ui/ui_util.c
@@ -25,7 +25,7 @@ int UI_UTIL_read_pw_string(char *buf, int length, const char *prompt,
UI_UTIL_read_pw(buf, buff, (length > BUFSIZ) ? BUFSIZ : length,
prompt, verify);
OPENSSL_cleanse(buff, BUFSIZ);
- return (ret);
+ return ret;
}
int UI_UTIL_read_pw(char *buf, char *buff, int size, const char *prompt,
@@ -48,7 +48,7 @@ int UI_UTIL_read_pw(char *buf, char *buff, int size, const char *prompt,
}
if (ok > 0)
ok = 0;
- return (ok);
+ return ok;
}
/*