Skip to content

Commit b8cbdd9

Browse files
committed
fix + position to avoid strange indentation
async seems to treat differently the continuations of expressions, depending on where the operators are placed.
1 parent 1085d12 commit b8cbdd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

driver/catalogue.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ SQLRETURN EsSQLColumnsW
325325
{
326326
esodbc_stmt_st *stmt = STMH(hstmt);
327327
SQLRETURN ret;
328-
SQLWCHAR wbuf[sizeof(SQL_COLUMNS(SQL_COL_CAT)) +
329-
3 * ESODBC_MAX_IDENTIFIER_LEN];
328+
SQLWCHAR wbuf[sizeof(SQL_COLUMNS(SQL_COL_CAT))
329+
+ 3 * ESODBC_MAX_IDENTIFIER_LEN];
330330
SQLWCHAR *catalog, *schema, *table, *column;
331331
size_t cnt_cat, cnt_sch, cnt_tab, cnt_col, pos;
332332

0 commit comments

Comments
 (0)