Fix to remove compiler warnings

include/my_global.h:
  Fixed wrong #ifdef
include/violite.h:
  Fix to remove compiler warning
libmysqld/libmysqld.c:
  Fix to remove compiler warning
myisam/sort.c:
  Fix to remove compiler warning
myisammrg/myrg_extra.c:
  Fix to remove compiler warning
vio/viossl.c:
  Fix to remove compiler warning
This commit is contained in:
unknown 2003-04-28 19:05:57 +03:00
commit 68faea2eaa
6 changed files with 18 additions and 10 deletions

View file

@ -33,7 +33,7 @@ int myrg_extra(MYRG_INFO *info,enum ha_extra_function function,
if (function == HA_EXTRA_CACHE)
{
info->cache_in_use=1;
info->cache_size= (extra_arg ? *(long*) extra_arg :
info->cache_size= (extra_arg ? *(ulong*) extra_arg :
my_default_record_cache_size);
}
else