Fixed compile warning.
This commit is contained in:
parent
b06e3daf1b
commit
61c6c6ec2c
1 changed files with 2 additions and 2 deletions
|
@ -497,10 +497,10 @@ START_TEST(operation_alloc_test) {
|
||||||
Tinit();
|
Tinit();
|
||||||
|
|
||||||
int xid = Tbegin();
|
int xid = Tbegin();
|
||||||
recordid rid1 = Talloc(xid, 100);
|
Talloc(xid, 100);
|
||||||
Tcommit(xid);
|
Tcommit(xid);
|
||||||
xid = Tbegin();
|
xid = Tbegin();
|
||||||
recordid rid2 = Talloc(xid, 100);
|
Talloc(xid, 100);
|
||||||
Tcommit(xid);
|
Tcommit(xid);
|
||||||
|
|
||||||
Tdeinit();
|
Tdeinit();
|
||||||
|
|
Loading…
Reference in a new issue