From 001e114b8d59f4eaf2a314a2bc5e57078afdf82f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 10 Nov 2013 09:20:52 -0500 Subject: Fix whitespace issues found by git diff --check, add gitattributes Set per file type attributes in .gitattributes to fine-tune whitespace checks. With the associated cleanups, the tree is now clean for git --- src/interfaces/ecpg/test/sql/fetch.pgc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces/ecpg/test/sql/fetch.pgc') diff --git a/src/interfaces/ecpg/test/sql/fetch.pgc b/src/interfaces/ecpg/test/sql/fetch.pgc index 83ed46786da..e280d27f4e5 100644 --- a/src/interfaces/ecpg/test/sql/fetch.pgc +++ b/src/interfaces/ecpg/test/sql/fetch.pgc @@ -29,7 +29,7 @@ int main() { EXEC SQL WHENEVER NOT FOUND DO BREAK; while (1) { - EXEC SQL FETCH 1 IN C INTO :i, :str; + EXEC SQL FETCH 1 IN C INTO :i, :str; printf("%d: %s\n", i, str); } @@ -45,7 +45,7 @@ int main() { EXEC SQL WHENEVER NOT FOUND DO BREAK; while (1) { - EXEC SQL FETCH 1 IN D INTO :i, :str; + EXEC SQL FETCH 1 IN D INTO :i, :str; printf("%d: %s\n", i, str); } EXEC SQL CLOSE D; -- cgit v1.2.3