From: Bruce Momjian Date: Sat, 12 Jul 1997 20:31:47 +0000 (+0000) Subject: Change char to int as used in EOF compare, Gerhard X-Git-Tag: REL9_0_0~28655 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0fca4afbf4e883069800ec08214ba0f0ca97a83c;p=pg-rex%2Fsyncrep.git Change char to int as used in EOF compare, Gerhard --- diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 09b4bb0e52..9214b3a941 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.