Skip to content

Commit 32b68ed

Browse files
committed
Fix whitespace
1 parent fa9fc3a commit 32b68ed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/interfaces/ecpg/ecpglib/execute.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,7 @@ ecpg_store_input(const int lineno, const bool force_indicator, const struct vari
753753
strcpy(mallocedval, "{");
754754

755755
for (element = 0; element < asize; element++)
756-
sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f');
757-
756+
sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f');
758757

759758
strcpy(mallocedval + strlen(mallocedval) - 1, "}");
760759
}

0 commit comments

Comments
 (0)