diff options
| author | Pranith Kumar K <pkarampu@redhat.com> | 2014-05-23 13:06:26 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2014-05-24 09:51:51 -0700 | 
| commit | b7ae88b63fb6ea1abdb86669f2a786b94a6470b4 (patch) | |
| tree | f861e22a4c0720385f8218e9adbcdba4ca45a433 /libglusterfs/src | |
| parent | 090131cd75f781d71c01357d148895e417bd3da2 (diff) | |
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>
Diffstat (limited to 'libglusterfs/src')
| -rw-r--r-- | libglusterfs/src/mem-pool.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/mem-pool.c b/libglusterfs/src/mem-pool.c index 6207e995bc3..356cfdb78ca 100644 --- a/libglusterfs/src/mem-pool.c +++ b/libglusterfs/src/mem-pool.c @@ -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) {  | 
