Repository: trafficserver Updated Branches: refs/heads/master e56d1f9eb -> 0180e58ff
TS-3918: fix gcc unsigned comparisons Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/0180e58f Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/0180e58f Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/0180e58f Branch: refs/heads/master Commit: 0180e58ffcedd82e5c1f46b4bba17ae30011b68a Parents: e56d1f9 Author: James Peach <[email protected]> Authored: Thu Oct 8 21:19:51 2015 -0700 Committer: James Peach <[email protected]> Committed: Thu Oct 8 21:19:51 2015 -0700 ---------------------------------------------------------------------- iocore/eventsystem/I_ProxyAllocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/0180e58f/iocore/eventsystem/I_ProxyAllocator.h ---------------------------------------------------------------------- diff --git a/iocore/eventsystem/I_ProxyAllocator.h b/iocore/eventsystem/I_ProxyAllocator.h index 6fbf139..e24e686 100644 --- a/iocore/eventsystem/I_ProxyAllocator.h +++ b/iocore/eventsystem/I_ProxyAllocator.h @@ -39,7 +39,7 @@ extern int thread_freelist_high_watermark; extern int thread_freelist_low_watermark; struct ProxyAllocator { - unsigned allocated; + int allocated; void *freelist; ProxyAllocator() : allocated(0), freelist(0) {}
