diff options
author | monty@mysql.com <> | 2004-05-19 16:38:12 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-19 16:38:12 +0300 |
commit | 86a966256be6818d20d138c1e687e1f195ddaf74 (patch) | |
tree | 8d62bd5b112fa2148c1631a51cc9fa272dcf5d16 /myisam/myisam_ftdump.c | |
parent | fdc0f0e781051150ac187a92df1ff8f9ae3286c7 (diff) | |
download | mariadb-git-86a966256be6818d20d138c1e687e1f195ddaf74.tar.gz |
Added support for projects 'classic', 'classic nt', 'pro' and 'pro nt'
Ensured that all projects compile
Removed compiler warnings
Better setting of server_version variable.
Fix that make_win_src_distribution creates the privilege tables.
Diffstat (limited to 'myisam/myisam_ftdump.c')
-rw-r--r-- | myisam/myisam_ftdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisam_ftdump.c b/myisam/myisam_ftdump.c index d06cb46bdc1..06b5f057fbb 100644 --- a/myisam/myisam_ftdump.c +++ b/myisam/myisam_ftdump.c @@ -81,7 +81,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(); } |