datatop: Remove unused variables from datatop_ip_table_poll.c

 * Introduced by commit:
    "datatop: add support to capture ip table stats

 * Fixes the following errors:
    128:6: error: unused variable 'i' [-Werror,-Wunused-variable]
    182:36: error: unused variable 'dpset' [-Werror,-Wunused-variable]
    183:28: error: unused variable 'curr_ptr' [-Werror,-Wunused-variable]
    197:38: error: unused parameter 'arg' [-Werror,-Wunused-parameter]

Change-Id: I4241cccae7ac90a9032e08f442d5a102465c399b
diff --git a/datatop/src/datatop_ip_table_poll.c b/datatop/src/datatop_ip_table_poll.c
index 980eb4c..69eb5f0 100644
--- a/datatop/src/datatop_ip_table_poll.c
+++ b/datatop/src/datatop_ip_table_poll.c
@@ -125,7 +125,6 @@
 static void dtop_ip_table_dpg_deconstructor
 			(struct dtop_data_point_gatherer *dpset)
 {
-	int i;
 	free(dpset->prefix);
   if(dpset->file)
   {
@@ -179,14 +178,10 @@
  */
 void dtop_ip_table_poll_cleanup()
 {
-  struct dtop_data_point_gatherer *dpset;
-  struct dtop_linked_list *curr_ptr = ip_dpg_list;
-
   pthread_mutex_lock(&dtop_ip_table_lock);
   deconstruct_dpgs(ip_dpg_list);
   dtop_rem_linked_list(ip_dpg_list);
   pthread_mutex_unlock(&dtop_ip_table_lock);
-
 }
 
 /**
@@ -194,7 +189,7 @@
  *
  * @param arg ptr
  */
-void *dtop_ip_table_start_poll(void *arg)
+void *dtop_ip_table_start_poll(__attribute__((__unused__)) void *arg)
 {
   time_t start_t, curr_t;
   double diff_t = 9999999.00; /* some high # > DTOP_IPTRR_POLL_PERIOD */