<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - warn_unused_result noise"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=58727#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - warn_unused_result noise"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=58727">bug 58727</a>
              from <span class="vcard"><a class="email" href="mailto:dmacks@netspace.org" title="Daniel Macks <dmacks@netspace.org>"> <span class="fn">Daniel Macks</span></a>
</span></b>
        <pre>I'm not a machine with compilers right now to test, but you cast the
function-call to void rather than assigning to a temp-variable? Instead of:

int unused;
unused=some_function_with_attribute_wur(foo);
(void) unused;

Just:

(void) some_function_with_attribute_wur(foo);</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>