Fix printf format specifiers.

Fixes:

dalvik/tools/hprof-conv/HprofConv.c:233:61: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat]
            fprintf(stderr, "ERROR: read %d of %d bytes\n", actual, count);

dalvik/tools/hprof-conv/HprofConv.c:256:58: warning: format specifies type 'int' but the argument has type 'size_t' (aka 'unsigned long') [-Wformat]
        fprintf(stderr, "ERROR: write %d of %d bytes\n", actual, pBuf->curLen);

dalvik/tools/hprof-conv/HprofConv.c:537:26: warning: format specifies type 'int' but the argument has type 'long' [-Wformat]
                subType, buf - origBuf);

Change-Id: If9926900417d57971fa25a4c7f465a9a0c50405e
1 file changed