]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* cg_print.c (print_header): Add no-c-format comment to prevent
authorAlan Modra <amodra@gmail.com>
Thu, 28 Apr 2011 05:12:13 +0000 (05:12 +0000)
committerAlan Modra <amodra@gmail.com>
Thu, 28 Apr 2011 05:12:13 +0000 (05:12 +0000)
confusion when translating "%time".

gprof/ChangeLog
gprof/cg_print.c

index a1154c0244b04b72034a988e6c24f8fc8cae5438..6b907edbe9318623b3bc6f26fd30b4c4b7351904 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-28  Jonathan Nieder  <jrnieder@gmail.com>
+
+       * cg_print.c (print_header): Add no-c-format comment to prevent
+       confusion when translating "%time".
+
 2011-04-27  Nick Clifton  <nickc@redhat.com>
 
        * po/eo.po: Updated Esperanto translation.
index c1a2a31df0067be3421eb33c38721fac376c60a7..8ff14714171323ab41dcac78dd6ec59c9d7bc9b6 100644 (file)
@@ -1,6 +1,6 @@
 /* cg_print.c -  Print routines for displaying call graphs.
 
-   Copyright 2000, 2001, 2002, 2004, 2007, 2009
+   Copyright 2000, 2001, 2002, 2004, 2007, 2009, 2011
    Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
@@ -96,8 +96,11 @@ print_header ()
       printf ("%6.6s %5.5s %7.7s %11.11s %7.7s/%-7.7s     %-8.8s\n",
              "", "", "", "", _("called"), _("total"), _("parents"));
       printf ("%-6.6s %5.5s %7.7s %11.11s %7.7s+%-7.7s %-8.8s\t%5.5s\n",
-             _("index"), _("%time"), _("self"), _("descendants"),
-             _("called"), _("self"), _("name"), _("index"));
+             _("index"),
+             /* xgettext:no-c-format */
+             _("%time"),
+             _("self"), _("descendants"), _("called"), _("self"),
+             _("name"), _("index"));
       printf ("%6.6s %5.5s %7.7s %11.11s %7.7s/%-7.7s     %-8.8s\n",
              "", "", "", "", _("called"), _("total"), _("children"));
       printf ("\n");