diff options
author | monty@butch. <> | 2002-11-07 03:54:00 +0200 |
---|---|---|
committer | monty@butch. <> | 2002-11-07 03:54:00 +0200 |
commit | a2bdf9265f3a0874f8d58bec690da4af07bca4cb (patch) | |
tree | 2cbd26b72e2ab9ce6d8a7e6cf96fab865fec9834 /myisam/sort.c | |
parent | 5333cfb4298899c0985fc07f229c99866ef656cc (diff) | |
download | mariadb-git-a2bdf9265f3a0874f8d58bec690da4af07bca4cb.tar.gz |
Portability fixes for Fortre C++ 5.0 (on Sun) in 32 and 64 bit modes.
Diffstat (limited to 'myisam/sort.c')
-rw-r--r-- | myisam/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/sort.c b/myisam/sort.c index 79d31147bfc..fd5622e1340 100644 --- a/myisam/sort.c +++ b/myisam/sort.c @@ -488,7 +488,7 @@ int thr_write_keys(MI_SORT_PARAM *sort_param) printf("Key %d - Merging %u keys\n",sinfo->key+1, sinfo->keys); if (merge_many_buff(sinfo, keys, (uchar **)mergebuf, dynamic_element(&sinfo->buffpek, 0, BUFFPEK *), - &maxbuffer, &sinfo->tempfile)) + (int*) &maxbuffer, &sinfo->tempfile)) { got_error=1; continue; |