diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-15 15:24:56 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-15 15:24:56 +0300 |
commit | 1a9bf29e9956ccd113d87f8ffe82781d6515ff61 (patch) | |
tree | ab4e03c4854b65e0c557a84b43f16c9f5928a876 /isam | |
parent | c97fb8f37a48340af4d69e170682f4e2f843d771 (diff) | |
download | mariadb-git-1a9bf29e9956ccd113d87f8ffe82781d6515ff61.tar.gz |
Fixed bug in --safe-create-user
Docs/manual.texi:
Changelog
isam/_dbug.c:
Cleanup
sql/mysqld.cc:
Cleanup
sql/net_serv.cc:
Cleanup
Diffstat (limited to 'isam')
-rw-r--r-- | isam/_dbug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isam/_dbug.c b/isam/_dbug.c index d632d5931a5..18e671793ed 100644 --- a/isam/_dbug.c +++ b/isam/_dbug.c @@ -89,7 +89,7 @@ void _nisam_print_key(FILE *stream, register N_KEYSEG *keyseg, const uchar *key) key=end; break; case HA_KEYTYPE_UINT24: - VOID(fprintf(stream,"%ld",uint3korr(key))); + VOID(fprintf(stream,"%ld",(long) uint3korr(key))); key=end; break; case HA_KEYTYPE_FLOAT: |