This is the mail archive of the gdb-cvs@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]

[binutils-gdb] Add missing spaces after inet_ntop invocations.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=07147793e678dac92f6a16f140678f9a5aed21e7

commit 07147793e678dac92f6a16f140678f9a5aed21e7
Author: John Baldwin <jhb@FreeBSD.org>
Date:   Wed Sep 19 09:44:51 2018 -0700

    Add missing spaces after inet_ntop invocations.
    
    gdb/ChangeLog:
    
    	* fbsd-tdep.c (fbsd_print_sockaddr_in): Style fix.
    	(fbsd_print_sockaddr_in6): Likewise.

Diff:
---
 gdb/ChangeLog   | 5 +++++
 gdb/fbsd-tdep.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8675c15..c3922e2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2018-09-19  John Baldwin  <jhb@FreeBSD.org>
+
+	* fbsd-tdep.c (fbsd_print_sockaddr_in): Style fix.
+	(fbsd_print_sockaddr_in6): Likewise.
+
 2018-09-19  Richard Bunt  <richard.bunt@arm.com>
 	    Chris January  <chris.january@arm.com>
 
diff --git a/gdb/fbsd-tdep.c b/gdb/fbsd-tdep.c
index d4ffc71..070d448 100644
--- a/gdb/fbsd-tdep.c
+++ b/gdb/fbsd-tdep.c
@@ -892,7 +892,7 @@ fbsd_print_sockaddr_in (const void *sockaddr)
     reinterpret_cast<const struct fbsd_sockaddr_in *> (sockaddr);
   char buf[INET_ADDRSTRLEN];
 
-  if (inet_ntop(AF_INET, sin->sin_addr, buf, sizeof buf) == nullptr)
+  if (inet_ntop (AF_INET, sin->sin_addr, buf, sizeof buf) == nullptr)
     error (_("Failed to format IPv4 address"));
   printf_filtered ("%s:%u", buf,
 		   (sin->sin_port[0] << 8) | sin->sin_port[1]);
@@ -907,7 +907,7 @@ fbsd_print_sockaddr_in6 (const void *sockaddr)
     reinterpret_cast<const struct fbsd_sockaddr_in6 *> (sockaddr);
   char buf[INET6_ADDRSTRLEN];
 
-  if (inet_ntop(AF_INET6, sin6->sin6_addr, buf, sizeof buf) == nullptr)
+  if (inet_ntop (AF_INET6, sin6->sin6_addr, buf, sizeof buf) == nullptr)
     error (_("Failed to format IPv6 address"));
   printf_filtered ("%s.%u", buf,
 		   (sin6->sin6_port[0] << 8) | sin6->sin6_port[1]);


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