diff options
author | hunt <hunt> | 2007-03-21 14:00:00 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-03-21 14:00:00 +0000 |
commit | ee8d9a0d5b784bc02d07ff587d71b1f9d4557635 (patch) | |
tree | 036b1bff5c53aa0e6209736885c0c8e3401be649 | |
parent | 840489846051292305b56243feba9807ba06039e (diff) | |
download | systemtap-steved-ee8d9a0d5b784bc02d07ff587d71b1f9d4557635.tar.gz systemtap-steved-ee8d9a0d5b784bc02d07ff587d71b1f9d4557635.tar.xz systemtap-steved-ee8d9a0d5b784bc02d07ff587d71b1f9d4557635.zip |
2007-03-21 Martin Hunt <hunt@redhat.com>
* map.c (_stp_map_init): Fix signed vs unsigned comparison warning.
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/map.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 4c714b01..c8941e85 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2007-03-21 Martin Hunt <hunt@redhat.com> + + * map.c (_stp_map_init): Fix signed vs unsigned comparison warning. + 2007-03-20 Frank Ch. Eigler <fche@elastic.org> PR 4224. diff --git a/runtime/map.c b/runtime/map.c index 5748c797..e4235901 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. */ |