]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Fix bug in line2addr:handle_module. Missng print parameter.
authorUlrich Drepper <drepper@redhat.com>
Wed, 9 Nov 2005 16:13:48 +0000 (16:13 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 9 Nov 2005 16:13:48 +0000 (16:13 +0000)
tests/ChangeLog
tests/line2addr.c

index aa6d650d7ff70940f8d5222fb7bc0425237b4183..2c5fc164d78b0d6347f50bb11fa6a608777dee23 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-09  Ulrich Drepper  <drepper@redhat.com>
+
+       * line2addr.c (handle_module): Add missing parameter to printf.
+
 2005-10-27  Roland McGrath  <roland@redhat.com>
 
        * allfcts.c (cb): Update for dwarf_func_* -> dwarf_decl_* changes.
index 4c3b604527fdcf56c34e467e12804e2c973a54cf..2b92af25c8506091282e4c5e6af55cfff34d0268 100644 (file)
@@ -74,7 +74,7 @@ handle_module (Dwfl_Module *mod __attribute__ ((unused)),
                printf (" %s%s:%d", modname[0] != '\0' ? "" : "(",
                        file, line);
              if (col != 0)
-               printf (":%d");
+               printf (":%d", col);
              if (modname[0] != '\0'
                  || strcmp (file, a->file) || line != a->line || col != 0)
                puts (")");