Skip to content
Snippets Groups Projects
Commit 1cfeeaad authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

db2 flags should be u_int32_t, not int.

parent 324903af
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ bdb2i_back_startup_internal(
)
{
struct ldbtype *lty = (struct ldbtype *) bi->bi_private;
int envFlags;
u_int32_t envFlags;
int err = 0;
char *home;
......
......@@ -48,7 +48,7 @@ ldbm_back_startup(
#else
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
DB_ENV *dbEnv = &li->li_db_env;
int envFlags = DB_CREATE | DB_THREAD;
u_int32_t envFlags = DB_CREATE | DB_THREAD;
int err = 0;
char *home;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment