Must compile before commit, must compile before commit...
This commit is contained in:
parent
7a148b9f19
commit
846f7f72ba
1 changed files with 3 additions and 3 deletions
|
@ -1040,7 +1040,7 @@ ASYNC_NIF_DECL(
|
|||
}
|
||||
|
||||
WT_CURSOR *cursor = NULL;
|
||||
rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
int rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
if (rc != 0) {
|
||||
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
||||
return;
|
||||
|
@ -1095,7 +1095,7 @@ ASYNC_NIF_DECL(
|
|||
}
|
||||
|
||||
WT_CURSOR *cursor = NULL;
|
||||
rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
int rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
if (rc != 0) {
|
||||
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
||||
return;
|
||||
|
@ -1173,7 +1173,7 @@ ASYNC_NIF_DECL(
|
|||
}
|
||||
|
||||
WT_CURSOR *cursor = NULL;
|
||||
rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
int rc = __retain_cursor(args->conn_handle, worker_id, args->uri, &cursor);
|
||||
if (rc != 0) {
|
||||
ASYNC_NIF_REPLY(__strerror_term(env, rc));
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue