Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 436d4ae

Browse files
committed
Add missing paren to ODBC compiles.
1 parent 76273a5 commit 436d4ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/odbc/pgtypes.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -700,12 +700,12 @@ pgtype_length(StatementClass *stmt, Int4 type, int col, int handle_unknown_size_
700700
case PG_TYPE_BPCHAR:
701701
#ifdef MULTIBYTE
702702
/* after 7.2 */
703-
if (PG_VERSION_GE(SC_get_conn(stmt), 7.2)
703+
if (PG_VERSION_GE(SC_get_conn(stmt), 7.2))
704704
return 3 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
705705
else
706706
#else
707707
/* CR -> CR/LF */
708-
return 2 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
708+
return 2 * pgtype_precision(stmt, type, col, handle_unknown_size_as);
709709
#endif /* MULTIBYTE */
710710
default:
711711
return pgtype_precision(stmt, type, col, handle_unknown_size_as);

0 commit comments

Comments
 (0)