1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Windows fixes for VC++ compiler compability

This commit is contained in:
miguel@hegel.local
2004-05-05 02:59:17 -03:00
parent ee627d2510
commit 8d1480f7c5
11 changed files with 38 additions and 26 deletions

View File

@ -83,7 +83,7 @@ int main(int argc,char *argv[])
{
char *end;
inx= strtoll(argv[1], &end, 10);
inx= (uint) strtoll(argv[1], &end, 10);
if (*end)
usage();
}