We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84358f6 commit d0092bbCopy full SHA for d0092bb
src/utils/pgut.c
@@ -989,7 +989,7 @@ longopts_to_optstring(const struct option opts[], const size_t len)
989
s = result;
990
for (i = 0; i < len; i++)
991
{
992
- if (opts[i].val > 128 || !isprint(opts[i].val))
+ if (!isprint(opts[i].val)) //opts[i].val > 128 ||
993
continue;
994
*s++ = opts[i].val;
995
if (opts[i].has_arg != no_argument)
0 commit comments