We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf1dadd3 commit7b5a9d6Copy full SHA for 7b5a9d6
src/interfaces/ecpg/preproc/type.c
@@ -520,7 +520,7 @@ ECPGdump_a_simple(FILE *o, const char *name, enum ECPGttype type,
520
sprintf(offset,"sizeof(%s)",ecpg_type_name(type));
521
break;
522
}
523
-
+
524
/*
525
* Array size would be -1 for addresses of members within structure,
526
* when pointer to structure is being dumped.
@@ -530,7 +530,7 @@ ECPGdump_a_simple(FILE *o, const char *name, enum ECPGttype type,
530
531
532
* If siz i.e. the size of structure of which this variable is part of,
533
- * that gives the offset to the next element, if required
+ * that gives the offset to the next element, if required
534
*/
535
if (siz==NULL||strlen(siz)==0)
536
fprintf(o,"\n\t%s,%s,(long)%s,(long)%s,%s, ",get_type(type),variable,varcharsize,arrsize,offset);