Index: src/interfaces/ecpg/test/test3.pgc =================================================================== RCS file: /cvsroot/pgsql-server/src/interfaces/ecpg/test/test3.pgc,v retrieving revision 1.14 diff -c -c -r1.14 test3.pgc *** src/interfaces/ecpg/test/test3.pgc 21 Mar 2002 09:42:52 -0000 1.14 --- src/interfaces/ecpg/test/test3.pgc 13 Jan 2004 01:25:31 -0000 *************** *** 68,74 **** printf(", born %ld", personal.birth.born); if (ind_personal.ind_birth.age >= 0) printf(", age = %d", personal.birth.age); ! if (ind_married >= 0) printf(", married %10.10s", married->arr); if (ind_children >= 0) printf(", children = %d", children); --- 68,74 ---- printf(", born %ld", personal.birth.born); if (ind_personal.ind_birth.age >= 0) printf(", age = %d", personal.birth.age); ! if (*ind_married >= 0) printf(", married %10.10s", married->arr); if (ind_children >= 0) printf(", children = %d", children); *************** *** 98,104 **** printf(", born %ld", personal.birth.born); if (ind_personal.ind_birth.age >= 0) printf(", age = %d", personal.birth.age); ! if (ind_married >= 0) printf(", married %10.10s", married->arr); if (ind_children >= 0) printf(", children = %d", children); --- 98,104 ---- printf(", born %ld", personal.birth.born); if (ind_personal.ind_birth.age >= 0) printf(", age = %d", personal.birth.age); ! if (*ind_married >= 0) printf(", married %10.10s", married->arr); if (ind_children >= 0) printf(", children = %d", children); Index: src/interfaces/ecpg/test/test4.pgc =================================================================== RCS file: /cvsroot/pgsql-server/src/interfaces/ecpg/test/test4.pgc,v retrieving revision 1.12 diff -c -c -r1.12 test4.pgc *** src/interfaces/ecpg/test/test4.pgc 20 Jun 2003 13:36:34 -0000 1.12 --- src/interfaces/ecpg/test/test4.pgc 13 Jan 2004 01:25:31 -0000 *************** *** 1,5 **** --- 1,6 ---- #include #include + #include exec sql whenever sqlerror sqlprint;