1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fixing return value.

This commit is contained in:
mkindahl@dl145h.mysql.com
2008-01-30 17:35:25 +01:00
parent 219a75056a
commit 31355747d2
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ uint32 table_def::calc_field_size(uint col, uchar *master_data) const
break;
}
default:
length= ~(uint32) -1;
length= ~(uint32) 0;
}
return length;
}