]> sourceware.org Git - systemtap.git/commitdiff
PR3823: modsign.cxx comment fix
authorLukas Berk <lberk@redhat.com>
Fri, 18 Feb 2011 14:40:31 +0000 (09:40 -0500)
committerLukas Berk <lberk@redhat.com>
Fri, 18 Feb 2011 14:40:31 +0000 (09:40 -0500)
Need to correctly pass type

modsign.cxx

index 13e2e6259e1a212d4877fc6bddfbf3acb60312c9..fcfee4560fe72d4c25185283b38876775b706571 100644 (file)
@@ -151,11 +151,7 @@ get_password (const string &fileName)
   password = (char*)PORT_Alloc (fileInfo.size + 1);
   if (! password)
     {
-      //cerr << "Unable to allocate " << (fileInfo.size + 1) << " bytes." << endl;
-      //cerr << autosprintf(ngettext("Unable to allocate one byte", "Unable to allocate %#x bytes",
-      //            (fileInfo.size + 1)), (fileInfo.size + 1)) << endl;
-      cerr << _F(ngettext("Unable to allocate %#x byte", "Unable to allocate %#x bytes",
-                  (fileInfo.size + 1)), (fileInfo.size + 1)) << endl;
+      cerr << "Unable to allocate " << (fileInfo.size + 1) << " bytes." << endl;
       nssError ();
       return NULL;
     }
This page took 0.02811 seconds and 5 git commands to generate.