aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/wgetopt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wgetopt.cpp')
-rw-r--r--src/wgetopt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wgetopt.cpp b/src/wgetopt.cpp
index c2905ab0..7951eaea 100644
--- a/src/wgetopt.cpp
+++ b/src/wgetopt.cpp
@@ -515,7 +515,7 @@ int wgetopter_t::_wgetopt_internal(int argc, wchar_t **argv, const wchar_t *opts
{
if (wopterr)
{
- fwprintf(stderr, _(L"%ls: Invalid option -- %lc\n"), argv[0], c);
+ fwprintf(stderr, _(L"%ls: Invalid option -- %lc\n"), argv[0], (wint_t)c);
}
woptopt = c;
@@ -554,7 +554,7 @@ int wgetopter_t::_wgetopt_internal(int argc, wchar_t **argv, const wchar_t *opts
{
/* 1003.2 specifies the format of this message. */
fwprintf(stderr, _(L"%ls: Option requires an argument -- %lc\n"),
- argv[0], c);
+ argv[0], (wint_t)c);
}
woptopt = c;
if (optstring[0] == ':')