This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: Fix a typo in comments


I am checking in this patch as an obvious fix.

H.J.
---
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 143577)
+++ ChangeLog	(working copy)
@@ -1,3 +1,7 @@
+2009-01-22  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* c-opts.c (c_common_post_options): Fix a typo in comments.
+
 2009-01-22  Steve Ellcey  <sje@cup.hp.com>
 
 	PR middle-end/38615
Index: c-opts.c
===================================================================
--- c-opts.c	(revision 143577)
+++ c-opts.c	(working copy)
@@ -1054,7 +1054,7 @@ c_common_post_options (const char **pfil
   if (warn_ignored_qualifiers == -1)
     warn_ignored_qualifiers = extra_warnings;
 
-  /* -Wpointer_sign is disabled by default, but it is enabled if any
+  /* -Wpointer-sign is disabled by default, but it is enabled if any
      of -Wall or -pedantic are given.  */
   if (warn_pointer_sign == -1)
     warn_pointer_sign = 0;


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