diff options
author | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
commit | 46401ab3842d29281161ddb4204d2f2959b8fbc7 (patch) | |
tree | 0a61e2dc180694c077416cd962cb3c948144686d /include/my_base.h | |
parent | 29b99eaa0d91952a69839027396f64058e885b58 (diff) | |
download | mariadb-git-46401ab3842d29281161ddb4204d2f2959b8fbc7.tar.gz |
Portability fixes for AIX43
include/my_base.h:
Portability fix
include/my_global.h:
Portability fix for AIX43
(Having _Export gave a lot of errors/warnings and I think this is not needed anymore)
include/my_sys.h:
Remove compiler warning on AIX43 with xlc_r compiler
include/mysql.h:
Portability fix
innobase/fil/fil0fil.c:
Fixed compiler warnings (xlc_r)
libmysql/libmysql.c:
Portability fix
strings/my_strtoll10.c:
Portability fix (for AIX43)
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index a1744f37bc6..1bd0f47afa4 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -133,7 +133,7 @@ enum ha_extra_function { HA_EXTRA_RETRIEVE_ALL_COLS, HA_EXTRA_PREPARE_FOR_DELETE, HA_EXTRA_PREPARE_FOR_UPDATE, /* Remove read cache if problems */ - HA_EXTRA_PRELOAD_BUFFER_SIZE, /* Set buffer size for preloading */ + HA_EXTRA_PRELOAD_BUFFER_SIZE /* Set buffer size for preloading */ }; /* The following is parameter to ha_panic() */ |