Skip to content

Commit d0092bb

Browse files
committed
changes in the parsing command line options
1 parent 84358f6 commit d0092bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/pgut.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ longopts_to_optstring(const struct option opts[], const size_t len)
989989
s = result;
990990
for (i = 0; i < len; i++)
991991
{
992-
if (opts[i].val > 128 || !isprint(opts[i].val))
992+
if (!isprint(opts[i].val)) //opts[i].val > 128 ||
993993
continue;
994994
*s++ = opts[i].val;
995995
if (opts[i].has_arg != no_argument)

0 commit comments

Comments
 (0)