On 09/10/2012 11:09 PM, Tommi Rantala wrote:
2012/9/11 Mike Frysinger <[email protected]>:
On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote:
-  int i;
+  unsigned i;
    int ret;

-  printf("wcslen(wstring) = %d\n", wcslen(wstring));
+  printf("wcslen(wstring) = %lu\n", (long unsigned) wcslen(wstring));

NAK: wcslen returns a size_t.  you should use that type for "i", and
then use %zu.

Since nobody has any idea why the test should exist in libunwind, can
we please just "git rm" it.

Got it.


_______________________________________________
Libunwind-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/libunwind-devel

Reply via email to