missed this in the last commit.
[deliverable/binutils-gdb.git] / gprof / utils.c
index a0e69b13b68ab2042d1b60583292460f09241673..c72c02e01f0d7ceed5f9ee6867f74e1a579acccd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1983 Regents of the University of California.
+ * Copyright (c) 1983, 1998 Regents of the University of California.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms are permitted
@@ -69,7 +69,7 @@ DEFUN (print_name_only, (self), Sym * self)
                }
            }
          sprintf (buf, " (%s:%d)", filename, self->line_num);
-         printf (buf);
+         printf ("%s", buf);
          size += strlen (buf);
        }
       if (demangled)
@@ -90,7 +90,7 @@ DEFUN (print_name, (self), Sym * self)
 
   if (self->cg.cyc.num != 0)
     {
-      printf (" <cycle %d>", self->cg.cyc.num);
+      printf (_(" <cycle %d>"), self->cg.cyc.num);
     }
   if (self->cg.index != 0)
     {
This page took 0.04113 seconds and 4 git commands to generate.