]> sourceware.org Git - systemtap.git/commitdiff
Fixup sym.c _stp_module_check note_addr warning.
authorMark Wielaard <mjw@redhat.com>
Fri, 21 Sep 2012 08:30:12 +0000 (10:30 +0200)
committerMark Wielaard <mjw@redhat.com>
Fri, 21 Sep 2012 08:32:30 +0000 (10:32 +0200)
The check said "notes_addr <= base_addr" /* shouldn't happen */
But the warning said "build-id address %lx < base %lx".
Make them both <=.

runtime/sym.c

index 83de8eea7900996a733f929cd3772cb6aa45da0b..4fce3b7f103c6c67bf08647f8384def72348a11e 100644 (file)
@@ -351,7 +351,7 @@ static int _stp_module_check(void)
           }
 
           if (notes_addr <= base_addr) { /* shouldn't happen */
-              _stp_warn ("build-id address %lx < base %lx\n",
+              _stp_warn ("build-id address %lx <= base %lx\n",
                   notes_addr, base_addr);
               continue;
           }
This page took 0.026562 seconds and 5 git commands to generate.