You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/10/27 22:36:49 UTC

[24/50] [abbrv] git commit: TS-2291: Fix compiler warning about unused variable.

TS-2291: Fix compiler warning about unused variable.


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/8f13ff5b
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/8f13ff5b
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/8f13ff5b

Branch: refs/heads/5.0.x
Commit: 8f13ff5b51896e56838ea7c69f7030effd10f114
Parents: 1f829e2
Author: Phil Sorber <so...@apache.org>
Authored: Mon Oct 21 13:06:25 2013 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Mon Oct 21 13:06:25 2013 -0600

----------------------------------------------------------------------
 plugins/experimental/remap_stats/remap_stats.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8f13ff5b/plugins/experimental/remap_stats/remap_stats.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/remap_stats/remap_stats.c b/plugins/experimental/remap_stats/remap_stats.c
index 23c93cd..9922ea8 100644
--- a/plugins/experimental/remap_stats/remap_stats.c
+++ b/plugins/experimental/remap_stats/remap_stats.c
@@ -131,7 +131,7 @@ create_stat_name(char *hostname, char *basename)
 }
 
 static int
-handle_read_req_hdr(TSCont cont, TSEvent event, void *edata)
+handle_read_req_hdr(TSCont cont, TSEvent event ATS_UNUSED, void *edata)
 {
     TSHttpTxn txn = (TSHttpTxn) edata;
     config_t *config;
@@ -149,7 +149,7 @@ handle_read_req_hdr(TSCont cont, TSEvent event, void *edata)
 }
 
 static int
-handle_post_remap(TSCont cont, TSEvent event, void *edata)
+handle_post_remap(TSCont cont, TSEvent event ATS_UNUSED, void *edata)
 {
     TSHttpTxn txn = (TSHttpTxn) edata;
     config_t *config;
@@ -176,7 +176,7 @@ handle_post_remap(TSCont cont, TSEvent event, void *edata)
 }
 
 static int
-handle_txn_close(TSCont cont, TSEvent event, void *edata)
+handle_txn_close(TSCont cont, TSEvent event ATS_UNUSED, void *edata)
 {
     TSHttpTxn txn = (TSHttpTxn) edata;
     config_t *config;