aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Database/QueryResultMysql.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Database/QueryResultMysql.cpp')
-rw-r--r--src/shared/Database/QueryResultMysql.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/Database/QueryResultMysql.cpp b/src/shared/Database/QueryResultMysql.cpp
index 058633668a7..e4694e1b9b6 100644
--- a/src/shared/Database/QueryResultMysql.cpp
+++ b/src/shared/Database/QueryResultMysql.cpp
@@ -30,7 +30,7 @@ QueryResultMysql::QueryResultMysql(MYSQL_RES *result, MYSQL_FIELD *fields, uint6
ASSERT(mCurrentRow);
for (uint32 i = 0; i < mFieldCount; i++)
- mCurrentRow[i].SetType(ConvertNativeType(fields[i].type));
+ mCurrentRow[i].SetType(ConvertNativeType(fields[i].type));
}
QueryResultMysql::~QueryResultMysql()
@@ -105,4 +105,3 @@ enum Field::DataTypes QueryResultMysql::ConvertNativeType(enum_field_types mysql
}
}
#endif
-