]> sourceware.org Git - systemtap.git/commitdiff
2007-03-21 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Wed, 21 Mar 2007 14:00:00 +0000 (14:00 +0000)
committerhunt <hunt>
Wed, 21 Mar 2007 14:00:00 +0000 (14:00 +0000)
* map.c (_stp_map_init): Fix signed vs unsigned comparison warning.

runtime/ChangeLog
runtime/map.c

index 4c714b01b65ee5d9f7b0f76a0c0e80719369e4fe..c8941e85100ea571aa366d12239c9de0dbf53dcf 100644 (file)
@@ -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.
index 5748c79799825450bad67a845dc5509230203378..e4235901c6d49ebdd05d4b2d5be50133df479b70 100644 (file)
@@ -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. */
This page took 0.031204 seconds and 5 git commands to generate.