diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2021-06-10 00:37:08 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2021-06-10 00:37:08 +0000 |
commit | 15b5916ed82c8de48b85d7b7afe670cb00e79796 (patch) | |
tree | b7891e7faa9ffaa27911b367d0551a38d03a53a6 /src/LYReadCFG.c | |
parent | c2036b385da968e77c3abbefa44cb4c88eff9512 (diff) | |
download | lynx-snapshots-15b5916ed82c8de48b85d7b7afe670cb00e79796.tar.gz |
snapshot of project "lynx", label v2-9-0dev_6j
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index b79e58da..18bc34cf 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.198 2020/02/23 23:09:33 Keith.Bowes Exp $ + * $LynxId: LYReadCFG.c,v 1.199 2021/06/09 21:49:32 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -815,7 +815,10 @@ static int keymap_fun(char *key) if (!success) fprintf(stderr, gettext("setting of line-editor binding for key %s (0x%x) to 0x%x for %s failed\n"), - key, lkc, lec, efunc); + key, + (unsigned) lkc, + (unsigned) lec, + efunc); else return 0; } @@ -827,11 +830,16 @@ static int keymap_fun(char *key) if (lec != -1) { fprintf(stderr, gettext("setting of line-editor binding for key %s (0x%x) to 0x%x for %s failed\n"), - key, lkc, lec, efunc); + key, + (unsigned) lkc, + (unsigned) lec, + efunc); } else { fprintf(stderr, gettext("setting of line-editor binding for key %s (0x%x) for %s failed\n"), - key, lkc, efunc); + key, + (unsigned) lkc, + efunc); } } } |