Changeset: 23cca6afeb47 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/23cca6afeb47
Modified Files:
clients/odbc/driver/ODBCStmt.c
Branch: Mar2025
Log Message:
Add missing space for better readability.
diffs (16 lines):
diff --git a/clients/odbc/driver/ODBCStmt.c b/clients/odbc/driver/ODBCStmt.c
--- a/clients/odbc/driver/ODBCStmt.c
+++ b/clients/odbc/driver/ODBCStmt.c
@@ -130,10 +130,10 @@ int
isValidStmt(ODBCStmt *stmt)
{
#ifdef ODBCDEBUG
- if (!(stmt &&stmt->Type == ODBC_STMT_MAGIC_NR))
+ if (!(stmt && stmt->Type == ODBC_STMT_MAGIC_NR))
ODBCLOG("stmt %p not a valid statement handle\n", stmt);
#endif
- return stmt &&stmt->Type == ODBC_STMT_MAGIC_NR;
+ return stmt && stmt->Type == ODBC_STMT_MAGIC_NR;
}
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]