gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 4 Mar 2013 19:38:02 +0000 (19:38 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 4 Mar 2013 19:38:02 +0000 (19:38 +0000)
* linespec.c (decode_line_2): Fix duplicate request off by two message.

gdb/ChangeLog
gdb/linespec.c

index f30826fa9050df7bb76275d3386993257f9a270e..fab6ff9283b626fb683b4eb2b46e9936369e826f 100644 (file)
@@ -1,3 +1,7 @@
+2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * linespec.c (decode_line_2): Fix duplicate request off by two message.
+
 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * linespec.c (struct linespec_canonical_name): New.
index 01f5e0a814279481439ffb4c7dd0e68c4f14784b..7ed823e8a9e4221672d0672010b89ad8807baa64 100644 (file)
@@ -1461,7 +1461,7 @@ decode_line_2 (struct linespec_state *self,
          else
            {
              printf_unfiltered (_("duplicate request for %d ignored.\n"),
-                                num);
+                                num + 2);
            }
        }
     }