1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

Fix whitespace

This commit is contained in:
Peter Eisentraut 2015-09-21 13:39:34 -04:00
parent 3dfffac701
commit a8bb248141

View File

@ -755,7 +755,6 @@ ecpg_store_input(const int lineno, const bool force_indicator, const struct vari
for (element = 0; element < asize; element++) for (element = 0; element < asize; element++)
sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f'); sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f');
strcpy(mallocedval + strlen(mallocedval) - 1, "}"); strcpy(mallocedval + strlen(mallocedval) - 1, "}");
} }
else else