1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-12 15:23:02 +03:00

Remove some whitespace in generated C output

It doesn't match the normal coding style.

Reviewed-by: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://www.postgresql.org/message-id/flat/22016aa9-ca59-15c7-01df-f292cb558c4d@enterprisedb.com
This commit is contained in:
Peter Eisentraut
2021-07-19 09:46:50 +02:00
parent 4d56115f72
commit 344dedfd1c
5 changed files with 6 additions and 6 deletions

View File

@@ -173,7 +173,7 @@ sub print_from_utf8_combined_map
printf $out "\n/* Combined character map */\n";
printf $out
"static const pg_utf_to_local_combined ULmap${charset}_combined[ %d ] = {",
"static const pg_utf_to_local_combined ULmap${charset}_combined[%d] = {",
scalar(@$table);
my $first = 1;
foreach my $i (sort { $a->{utf8} <=> $b->{utf8} } @$table)
@@ -208,7 +208,7 @@ sub print_to_utf8_combined_map
printf $out "\n/* Combined character map */\n";
printf $out
"static const pg_local_to_utf_combined LUmap${charset}_combined[ %d ] = {",
"static const pg_local_to_utf_combined LUmap${charset}_combined[%d] = {",
scalar(@$table);
my $first = 1;