1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

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

This commit is contained in:
Francois Gouget 2022-10-20 16:23:53 +02:00 committed by Alexandre Julliard
parent e7be6ae2f1
commit a00a64b9c0

View File

@ -263,7 +263,7 @@ static BOOL is_variable_length(SQLSMALLINT type)
return FALSE;
}
static BOOL is_fixed_legnth(SQLSMALLINT type)
static BOOL is_fixed_length(SQLSMALLINT type)
{
switch(type)
{
@ -1059,7 +1059,7 @@ static HRESULT WINAPI rowset_colsinfo_GetColumnInfo(IColumnsInfo *iface, DBORDIN
if (ColumnDataNullable)
dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISNULLABLE | DBCOLUMNFLAGS_MAYBENULL;
if (is_fixed_legnth(ColumnDataType))
if (is_fixed_length(ColumnDataType))
dbcolumn[i].dwFlags |= DBCOLUMNFLAGS_ISFIXEDLENGTH;
ret = SQLColAttribute(rowset->hstmt, i+1, SQL_DESC_SCALE, NULL, 0, NULL, &length);