public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Sergio Durigan Junior <sergiodj@redhat.com>
To: GDB Patches <gdb-patches@sourceware.org>
Cc: Sergio Durigan Junior <sergiodj@redhat.com>
Subject: [pushed/obvious] Fix ARI warning on gdb/typeprint.c:whatis_exp
Date: Sat, 16 Dec 2017 03:35:00 -0000	[thread overview]
Message-ID: <20171216033505.29488-1-sergiodj@redhat.com> (raw)

I forgot to indent the "if" clause properly and put the "&&" at the
beginning of the line, so ARI complained.  This commit fixed it.

gdb/ChangeLog:
2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>

	* typeprint.c (whatis_exp): Fix ARI warning and reindent "if"
	condition.
---
 gdb/ChangeLog   | 5 +++++
 gdb/typeprint.c | 6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2200f63ded..bd2934e32b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+	* typeprint.c (whatis_exp): Fix ARI warning and reindent "if"
+	condition.
+
 2017-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>
 	    Pedro Alves  <palves@redhat.com>
 
diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 15a62bef3c..0a7590b66d 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -446,9 +446,9 @@ whatis_exp (const char *exp, int show)
 		  {
 		    /* Filter out languages which don't implement the
 		       feature.  */
-		    if (show > 0 &&
-			(current_language->la_language == language_c
-			 || current_language->la_language == language_cplus))
+		    if (show > 0
+			&& (current_language->la_language == language_c
+			    || current_language->la_language == language_cplus))
 		      {
 			flags.print_offsets = 1;
 			flags.print_typedefs = 0;
-- 
2.14.3

                 reply	other threads:[~2017-12-16  3:35 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171216033505.29488-1-sergiodj@redhat.com \
    --to=sergiodj@redhat.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).