1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Add missing paren to ODBC compiles.

This commit is contained in:
Bruce Momjian 2001-09-13 22:39:29 +00:00
parent 76273a51a8
commit 436d4aef07

View File

@ -700,7 +700,7 @@ pgtype_length(StatementClass *stmt, Int4 type, int col, int handle_unknown_size_
case PG_TYPE_BPCHAR: case PG_TYPE_BPCHAR:
#ifdef MULTIBYTE #ifdef MULTIBYTE
/* after 7.2 */ /* after 7.2 */
if (PG_VERSION_GE(SC_get_conn(stmt), 7.2) if (PG_VERSION_GE(SC_get_conn(stmt), 7.2))
return 3 * pgtype_precision(stmt, type, col, handle_unknown_size_as); return 3 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
else else
#else #else