From 436d4aef0759e543b78d7825d007b66c1d7f62a4 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Thu, 13 Sep 2001 22:39:29 +0000
Subject: [PATCH] Add missing paren to ODBC compiles.

---
 src/interfaces/odbc/pgtypes.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/interfaces/odbc/pgtypes.c b/src/interfaces/odbc/pgtypes.c
index 97a6ff82016..dd242d7bdcd 100644
--- a/src/interfaces/odbc/pgtypes.c
+++ b/src/interfaces/odbc/pgtypes.c
@@ -700,12 +700,12 @@ pgtype_length(StatementClass *stmt, Int4 type, int col, int handle_unknown_size_
 		case PG_TYPE_BPCHAR:
 #ifdef MULTIBYTE
 			/* 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);
 			else
 #else
 			/* CR -> CR/LF */
-			return 2 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
+				return 2 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
 #endif /* MULTIBYTE */
 		default:
 			return pgtype_precision(stmt, type, col, handle_unknown_size_as);
-- 
GitLab