This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

[COMMITTED PATCH] psymtab.c (psymtab_search_name): Fix whitespace.


Hi.

Just a simple whitespace fix.

2014-11-21  Doug Evans  <dje@google.com>

	* psymtab.c (psymtab_search_name): Fix whitespace.

diff --git a/gdb/psymtab.c b/gdb/psymtab.c
index 86ea80d..2fc882f 100644
--- a/gdb/psymtab.c
+++ b/gdb/psymtab.c
@@ -633,13 +633,13 @@ psymtab_search_name (const char *name)
     case language_cplus:
     case language_java:
       {
-       if (strchr (name, '('))
-         {
-           char *ret = cp_remove_params (name);
+	if (strchr (name, '('))
+	  {
+	    char *ret = cp_remove_params (name);
 
-           if (ret)
-             return ret;
-         }
+	    if (ret)
+	      return ret;
+	  }
       }
       break;
 


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