libglusterfs: Fix unused variable warning

Change-Id: If385ba0993fdbd3e3b7500b2b6631721911e0ab3
BUG: 1100144
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/7858
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
This commit is contained in:
Pranith Kumar K 2014-05-23 13:06:26 +05:30 committed by Vijay Bellur
parent 090131cd75
commit b7ae88b63f
2 changed files with 3 additions and 5 deletions

View File

@ -284,10 +284,10 @@ mem_pool_new_fn (unsigned long sizeof_type,
{
struct mem_pool *mem_pool = NULL;
unsigned long padded_sizeof_type = 0;
void *pool = NULL;
int i = 0;
GF_UNUSED void *pool = NULL;
GF_UNUSED int i = 0;
int ret = 0;
struct list_head *list = NULL;
GF_UNUSED struct list_head *list = NULL;
glusterfs_ctx_t *ctx = NULL;
if (!sizeof_type || !count) {

View File

@ -3120,10 +3120,8 @@ static int32_t linkop_begin(call_frame_t *frame,
uint32_t new_mtd_size;
uint64_t value = 0;
void (*unwind_fn)(call_frame_t *frame);
void (*wind_fn)(call_frame_t *frame, xlator_t *this);
mtd_op_t mop;
wind_fn = linkop_wind_dispatch(local->fop);
unwind_fn = linkop_unwind_dispatch(local->fop);
mop = linkop_mtdop_dispatch(local->fop);