Skip to content

Commit 22955ad

Browse files
committed
- fix build (all platforms)
1 parent b248307 commit 22955ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/mssql/php_mssql.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
885885
res_buf[res_length] = '\0';
886886
ZVAL_STRINGL(result, res_buf, res_length, 0);
887887
}
888+
}
888889
break;
889890
case SQLNUMERIC:
890891
default: {
@@ -937,7 +938,7 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
937938
}
938939
}
939940

940-
static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr,int offset,zval *result, int column_type TSRMLS_DC)
941+
static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr, int offset,zval *result, int column_type TSRMLS_DC)
941942
{
942943
if (dbdatlen(mssql_ptr->link,offset) == 0) {
943944
ZVAL_NULL(result);

0 commit comments

Comments
 (0)