Commit d436127e authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Fix the type in set_errcall. Addresses #246.

git-svn-id: file:///svn/tokudb@1531 c7de825b-a66e-492c-adef-691d508d4ae1
parent 3bdd9763
...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = { ...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = {
{"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 664, 4}, {"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 664, 4},
{"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 716, 4}, {"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 716, 4},
{"int (*set_data_dir) (DB_ENV *, const char *)", 720, 4}, {"int (*set_data_dir) (DB_ENV *, const char *)", 720, 4},
{"void (*set_errcall) (DB_ENV *, void (*)(DB_ENV *, const char *, const char *))", 728, 4}, {"void (*set_errcall) (DB_ENV *, void (*)(const DB_ENV *, const char *, const char *))", 728, 4},
{"void (*set_errfile) (DB_ENV *, FILE*)", 732, 4}, {"void (*set_errfile) (DB_ENV *, FILE*)", 732, 4},
{"void (*set_errpfx) (DB_ENV *, const char *)", 736, 4}, {"void (*set_errpfx) (DB_ENV *, const char *)", 736, 4},
{"int (*set_flags) (DB_ENV *, u_int32_t, int)", 744, 4}, {"int (*set_flags) (DB_ENV *, u_int32_t, int)", 744, 4},
......
...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = { ...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = {
{"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 664, 4}, {"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 664, 4},
{"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 776, 4}, {"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 776, 4},
{"int (*set_data_dir) (DB_ENV *, const char *)", 780, 4}, {"int (*set_data_dir) (DB_ENV *, const char *)", 780, 4},
{"void (*set_errcall) (DB_ENV *, void (*)(DB_ENV *, const char *, const char *))", 788, 4}, {"void (*set_errcall) (DB_ENV *, void (*)(const DB_ENV *, const char *, const char *))", 788, 4},
{"void (*set_errfile) (DB_ENV *, FILE*)", 792, 4}, {"void (*set_errfile) (DB_ENV *, FILE*)", 792, 4},
{"void (*set_errpfx) (DB_ENV *, const char *)", 796, 4}, {"void (*set_errpfx) (DB_ENV *, const char *)", 796, 4},
{"int (*set_flags) (DB_ENV *, u_int32_t, int)", 808, 4}, {"int (*set_flags) (DB_ENV *, u_int32_t, int)", 808, 4},
......
...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = { ...@@ -19,7 +19,7 @@ struct fieldinfo db_env_fields32[] = {
{"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 692, 4}, {"int (*open) (DB_ENV *, const char *, u_int32_t, int)", 692, 4},
{"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 816, 4}, {"int (*set_cachesize) (DB_ENV *, u_int32_t, u_int32_t, int)", 816, 4},
{"int (*set_data_dir) (DB_ENV *, const char *)", 824, 4}, {"int (*set_data_dir) (DB_ENV *, const char *)", 824, 4},
{"void (*set_errcall) (DB_ENV *, void (*)(DB_ENV *, const char *, const char *))", 832, 4}, {"void (*set_errcall) (DB_ENV *, void (*)(const DB_ENV *, const char *, const char *))", 832, 4},
{"void (*set_errfile) (DB_ENV *, FILE*)", 836, 4}, {"void (*set_errfile) (DB_ENV *, FILE*)", 836, 4},
{"void (*set_errpfx) (DB_ENV *, const char *)", 840, 4}, {"void (*set_errpfx) (DB_ENV *, const char *)", 840, 4},
{"int (*set_flags) (DB_ENV *, u_int32_t, int)", 852, 4}, {"int (*set_flags) (DB_ENV *, u_int32_t, int)", 852, 4},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment