On Oct 21, 2013, at 12:53 PM, Jim Johnson <[email protected]> wrote: > Is there a Windows implementation?
No > Thanks, Jim > > Jim Johnson > 770-851-1477 > LinkedIn: http://www.linkedin.com/pub/james-johnson/2/a09/17a > > -----Original Message----- > From: [email protected] [mailto:[email protected]] > Sent: Monday, October 21, 2013 3:07 PM > To: [email protected] > Subject: git commit: TS-2291: Fix compiler warning about unused variable. > > Updated Branches: > refs/heads/master 1f829e268 -> 8f13ff5b5 > > > 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/master > Commit: 8f13ff5b51896e56838ea7c69f7030effd10f114 > Parents: 1f829e2 > Author: Phil Sorber <[email protected]> > Authored: Mon Oct 21 13:06:25 2013 -0600 > Committer: Phil Sorber <[email protected]> > 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/e > xperimental/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; > >
