From 61c6c6ec2c41ca288693efe102e458156f188da3 Mon Sep 17 00:00:00 2001 From: Sears Russell Date: Wed, 4 Oct 2006 04:43:17 +0000 Subject: [PATCH] Fixed compile warning. --- test/lladd/check_operations.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lladd/check_operations.c b/test/lladd/check_operations.c index 6916d8b..0ab1636 100644 --- a/test/lladd/check_operations.c +++ b/test/lladd/check_operations.c @@ -497,10 +497,10 @@ START_TEST(operation_alloc_test) { Tinit(); int xid = Tbegin(); - recordid rid1 = Talloc(xid, 100); + Talloc(xid, 100); Tcommit(xid); xid = Tbegin(); - recordid rid2 = Talloc(xid, 100); + Talloc(xid, 100); Tcommit(xid); Tdeinit();