From: hunt Date: Wed, 21 Mar 2007 14:00:00 +0000 (+0000) Subject: 2007-03-21 Martin Hunt X-Git-Tag: release-0.5.13~8 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=ee8d9a0d5b784bc02d07ff587d71b1f9d4557635;p=systemtap.git 2007-03-21 Martin Hunt * map.c (_stp_map_init): Fix signed vs unsigned comparison warning. --- diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 4c714b01b..c8941e851 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2007-03-21 Martin Hunt + + * map.c (_stp_map_init): Fix signed vs unsigned comparison warning. + 2007-03-20 Frank Ch. Eigler PR 4224. diff --git a/runtime/map.c b/runtime/map.c index 5748c7979..e4235901c 100644 --- a/runtime/map.c +++ b/runtime/map.c @@ -190,7 +190,7 @@ static int _stp_map_init(MAP m, unsigned max_entries, int type, int key_size, in return -1; } if (max_entries) { - int i; + unsigned i; void *tmp; /* size is the size of the map_node. */