mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Fix pointer processing in new entab.c function
This commit is contained in:
@@ -31,7 +31,7 @@ extern int optind;
|
||||
static void
|
||||
output_accumulated_spaces(int *prv_spaces, char **dst)
|
||||
{
|
||||
for (; *prv_spaces > 0; *prv_spaces--)
|
||||
for (; *prv_spaces > 0; (*prv_spaces)--)
|
||||
*((*dst)++) = ' ';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user