diff mbox

[v3] Avoid -Wall warnings in the testsuite

Message ID BANLkTinH2X0AxVL7XS-Mh2KdE3DaVheqBA@mail.gmail.com
State New
Headers show

Commit Message

Jonathan Wakely June 22, 2011, 10:46 p.m. UTC
On 22 June 2011 23:38, Jonathan Wakely <jwakely.gcc@gmail.com> wrote:
> On 22 June 2011 22:48, Paolo Carlini <paolo.carlini@oracle.com> wrote:
>> ... all, besides that corresponding to c++/49508.
>>
>> Committed to mainline.
>>
>> Thanks,
>> Paolo.
>>
>> //////////////////
>>
>
> Oops, this bit is my bad, I'll fix it:
>
> Index: testsuite/20_util/bind/socket.cc
> ===================================================================
> --- testsuite/20_util/bind/socket.cc    (revision 175315)
> +++ testsuite/20_util/bind/socket.cc    (working copy)
> @@ -35,7 +35,7 @@
>  {
>   int fd = 1;
>   my_sockaddr sa;           // N.B. non-const
> -  size_t len = sizeof(sa);  // N.B. size_t not socklen_t
> +  size_t len __attribute__((unused)) = sizeof(sa); // N.B. size_t not socklen_t
>   return bind(fd, &sa, sizeof(sa));
>  }
>
> I meant to use len, so the attribute isn't needed


2011-06-22  Jonathan Wakely  <jwakely.gcc@gmail.com>

        * testsuite/20_util/bind/socket.cc: Use variable and remove attribute.

Tested (this test only) on x86_64-linux and committed to trunk.
diff mbox

Patch

Index: testsuite/20_util/bind/socket.cc
===================================================================
--- testsuite/20_util/bind/socket.cc    (revision 175321)
+++ testsuite/20_util/bind/socket.cc    (working copy)
@@ -35,7 +35,7 @@ 
 {
   int fd = 1;
   my_sockaddr sa;           // N.B. non-const
-  size_t len __attribute__((unused)) = sizeof(sa); // N.B. size_t not socklen_t
-  return bind(fd, &sa, sizeof(sa));
+  size_t len = sizeof(sa);  // N.B. size_t not my_socklen_t
+  return bind(fd, &sa, len);
 }