1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-4243 Warnings/errors while compiling with clang

This commit is contained in:
Sergei Golubchik
2013-03-28 20:04:14 +01:00
parent 7868367270
commit 2901497b18
13 changed files with 19 additions and 24 deletions

View File

@@ -84,7 +84,7 @@ static ulonglong get_exact_record_count(List<TABLE_LIST> &tables)
while ((tl= ti++))
{
ha_rows tmp= tl->table->file->records();
if ((tmp == HA_POS_ERROR))
if (tmp == HA_POS_ERROR)
return ULONGLONG_MAX;
count*= tmp;
}