diff options
author | 2014-04-25 04:02:04 +0000 | |
---|---|---|
committer | 2014-04-25 04:02:04 +0000 | |
commit | 005a942c68edc354bc2e93f82f53a0af428b4654 (patch) | |
tree | 62dbcdce28773cd2be1dbee66a57a4ee66d2633c /lib/libcrypto/ui/ui_lib.c | |
parent | KNF fixes (diff) | |
download | wireguard-openbsd-005a942c68edc354bc2e93f82f53a0af428b4654.tar.xz wireguard-openbsd-005a942c68edc354bc2e93f82f53a0af428b4654.zip |
Use const char *.
Suggested by miod@
Diffstat (limited to 'lib/libcrypto/ui/ui_lib.c')
-rw-r--r-- | lib/libcrypto/ui/ui_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/ui/ui_lib.c b/lib/libcrypto/ui/ui_lib.c index c19d894d4eb..ee76e5e64d2 100644 --- a/lib/libcrypto/ui/ui_lib.c +++ b/lib/libcrypto/ui/ui_lib.c @@ -388,7 +388,7 @@ UI_dup_error_string(UI *ui, const char *text) char * UI_construct_prompt(UI *ui, const char *object_desc, const char *object_name) { - char *format = "Enter %s for %s:"; + const char *format = "Enter %s for %s:"; char *prompt; if (ui->meth->ui_construct_prompt) |