Update spaces

This commit is contained in:
ulvii 2017-03-24 17:03:24 -07:00 committed by GitHub
parent 4339bad694
commit 48e9914986

View file

@ -776,8 +776,8 @@ bool core_sqlsrv_fetch( sqlsrv_stmt* stmt, SQLSMALLINT fetch_orientation, SQLULE
} }
// First time only // First time only
if ( !stmt->fetch_called ) { if ( !stmt->fetch_called ) {
SQLSMALLINT has_fields = core::SQLNumResultCols(stmt TSRMLS_CC); SQLSMALLINT has_fields = core::SQLNumResultCols( stmt TSRMLS_CC );
CHECK_CUSTOM_ERROR(has_fields == 0, stmt, SQLSRV_ERROR_NO_FIELDS) { CHECK_CUSTOM_ERROR( has_fields == 0, stmt, SQLSRV_ERROR_NO_FIELDS ) {
throw core::CoreException(); throw core::CoreException();
} }
} }