This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch][gold] Fix typos


The attached is a trivial patch that just fixes typos. Is it OK? Can
patches like this go in with just a notice?

2009-12-01  Rafael Avila de Espindola  <espindola@google.com>

	* incremental-dump.cc (main): Fix typos.

Cheers,
-- 
Rafael Ãvila de EspÃndola
diff --git a/gold/incremental-dump.cc b/gold/incremental-dump.cc
index 0d29263..daaee8a 100644
--- a/gold/incremental-dump.cc
+++ b/gold/incremental-dump.cc
@@ -94,7 +94,7 @@ main(int argc, char** argv)
 
   if (incremental_header->version != 1)
     {
-      fprintf(stderr, "%s: %s: unknown incremestal version %d\n", argv[0],
+      fprintf(stderr, "%s: %s: unknown incremental version %d\n", argv[0],
               filename, incremental_header->version);
       return 1;
     }
@@ -156,7 +156,7 @@ main(int argc, char** argv)
       switch (input->input_type)
       {
       case INCREMENTAL_INPUT_OBJECT:
-        printf("Abject\n");
+        printf("Object\n");
         break;
       case INCREMENTAL_INPUT_ARCHIVE:
         printf("Archive\n");

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]