(tst_wcsxfrm): Use %zu instead of %d format specifier when printing ret.

This commit is contained in:
Ulrich Drepper 2003-05-05 18:17:05 +00:00
parent 0696c2c0b5
commit b2e2aa3739
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ tst_wcsxfrm (FILE * fp, int debug_flg)
if (debug_flg)
{
fprintf (stdout, "tst_wcsxfrm() : REC = %d\n", rec + 1);
fprintf (stdout, "tst_wcsxfrm() : 1st ret = %d\n", ret);
fprintf (stdout, "tst_wcsxfrm() : 1st ret = %zu\n", ret);
}
if (ret == -1 || ret >= n1 || errno_save != 0)
@ -78,7 +78,7 @@ tst_wcsxfrm (FILE * fp, int debug_flg)
if (debug_flg)
{
fprintf (stdout, "tst_wcsxfrm() : 2nd ret = %d\n", ret);
fprintf (stdout, "tst_wcsxfrm() : 2nd ret = %zu\n", ret);
}
/* wcscoll() */