Commit a00a64b9 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msdasql: Fix a typo in the is_fixed_length() function name.

parent e7be6ae2
...@@ -263,7 +263,7 @@ static BOOL is_variable_length(SQLSMALLINT type) ...@@ -263,7 +263,7 @@ static BOOL is_variable_length(SQLSMALLINT type)
return FALSE; return FALSE;
} }
static BOOL is_fixed_legnth(SQLSMALLINT type) static BOOL is_fixed_length(SQLSMALLINT type)
{ {
switch(type) switch(type)
{ {
...@@ -1059,7 +1059,7 @@ static HRESULT WINAPI rowset_colsinfo_GetColumnInfo(IColumnsInfo *iface, DBORDIN ...@@ -1059,7 +1059,7 @@ static HRESULT WINAPI rowset_colsinfo_GetColumnInfo(IColumnsInfo *iface, DBORDIN
if (ColumnDataNullable) if (ColumnDataNullable)
dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISNULLABLE | DBCOLUMNFLAGS_MAYBENULL; dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISNULLABLE | DBCOLUMNFLAGS_MAYBENULL;
if (is_fixed_legnth(ColumnDataType)) if (is_fixed_length(ColumnDataType))
dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISFIXEDLENGTH; dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISFIXEDLENGTH;
ret = SQLColAttribute(rowset->hstmt, i+1, SQL_DESC_SCALE, NULL, 0, NULL, &length); ret = SQLColAttribute(rowset->hstmt, i+1, SQL_DESC_SCALE, NULL, 0, NULL, &length);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment