diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-04-14 15:36:54 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-04-14 15:36:54 -0400 |
commit | 7b5a9d61a8202c46f4cc02878eafa8367080c59a (patch) | |
tree | 6fc9ef2df19adf345074956891821784386451f1 | |
parent | f1dadd34fa9fccc72800ed206b8c274073dfd039 (diff) | |
download | postgresql-7b5a9d61a8202c46f4cc02878eafa8367080c59a.tar.gz postgresql-7b5a9d61a8202c46f4cc02878eafa8367080c59a.zip |
Fix whitespace
-rw-r--r-- | src/interfaces/ecpg/preproc/type.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/type.c b/src/interfaces/ecpg/preproc/type.c index 6ccefd62cbc..308660e5ffb 100644 --- a/src/interfaces/ecpg/preproc/type.c +++ b/src/interfaces/ecpg/preproc/type.c @@ -520,7 +520,7 @@ ECPGdump_a_simple(FILE *o, const char *name, enum ECPGttype type, sprintf(offset, "sizeof(%s)", ecpg_type_name(type)); break; } - + /* * Array size would be -1 for addresses of members within structure, * when pointer to structure is being dumped. @@ -530,7 +530,7 @@ ECPGdump_a_simple(FILE *o, const char *name, enum ECPGttype type, /* * If siz i.e. the size of structure of which this variable is part of, - * that gives the offset to the next element, if required + * that gives the offset to the next element, if required */ if (siz == NULL || strlen(siz) == 0) fprintf(o, "\n\t%s,%s,(long)%s,(long)%s,%s, ", get_type(type), variable, varcharsize, arrsize, offset); |