diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-07-12 20:31:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-07-12 20:31:47 +0000 |
commit | 0fca4afbf4e883069800ec08214ba0f0ca97a83c (patch) | |
tree | 3cfc81b8aac58db2f80657ffcb26c802158ca944 /src/interfaces/libpq/fe-exec.c | |
parent | a89f9731e9e9e95652183992855d94aa9bf6f28c (diff) | |
download | postgresql-0fca4afbf4e883069800ec08214ba0f0ca97a83c.tar.gz postgresql-0fca4afbf4e883069800ec08214ba0f0ca97a83c.zip |
Change char to int as used in EOF compare, Gerhard
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 09b4bb0e520..9214b3a941a 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.32 1997/06/01 15:39:08 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.33 1997/07/12 20:31:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -374,7 +374,7 @@ process_response_from_backend(FILE *pfin, FILE *pfout, FILE *pfdebug, PGconn *conn, PGresult **result_p, char * const reason) { - char id; + int id; /* The protocol character received from the backend. The protocol character is the first character in the backend's response to our query. It defines the nature of the response. |