diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-08-14 10:32:47 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-08-14 10:32:47 +0000 |
commit | aa130f5c4290da72cb7ddbaf190f5eda8548af6f (patch) | |
tree | f87edb2362612d809837e2bfe4605580425358db /src/interfaces/ecpg/test/expected/connect-test5.c | |
parent | 146242fc9cb1394460a3674e7df09fc195fbd0bb (diff) |
Fixed compiler warning for enum handling
Diffstat (limited to 'src/interfaces/ecpg/test/expected/connect-test5.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/connect-test5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/expected/connect-test5.c b/src/interfaces/ecpg/test/expected/connect-test5.c index 4f119189800..129af81b8d9 100644 --- a/src/interfaces/ecpg/test/expected/connect-test5.c +++ b/src/interfaces/ecpg/test/expected/connect-test5.c @@ -40,7 +40,7 @@ main(void) { ECPGconnect(__LINE__, 0, "connectdb" , NULL, NULL , "main", 0); } #line 22 "test5.pgc" - { ECPGdo(__LINE__, 0, 1, NULL, 0, 0, "alter user connectuser encrypted password 'connectpw'", ECPGt_EOIT, ECPGt_EORT);} + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "alter user connectuser encrypted password 'connectpw'", ECPGt_EOIT, ECPGt_EORT);} #line 23 "test5.pgc" { ECPGdisconnect(__LINE__, "CURRENT");} |