Commit 8440897b authored by Bruce Momjian's avatar Bruce Momjian

Fix pointer processing in new entab.c function

parent e93f7253
...@@ -31,7 +31,7 @@ extern int optind; ...@@ -31,7 +31,7 @@ extern int optind;
static void static void
output_accumulated_spaces(int *prv_spaces, char **dst) output_accumulated_spaces(int *prv_spaces, char **dst)
{ {
for (; *prv_spaces > 0; *prv_spaces--) for (; *prv_spaces > 0; (*prv_spaces)--)
*((*dst)++) = ' '; *((*dst)++) = ' ';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment