Fix warning: format '%u' expects type 'unsigned int', but argument 3 has type 'size_t'.

svn path=/trunk/netsurf/; revision=3264
This commit is contained in:
James Bursa 2007-05-02 03:20:01 +00:00
parent 828bac39e4
commit d27f5c65da
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ void box_dump(struct box *box, unsigned int depth)
}
if (box->text)
fprintf(stderr, "%u '%.*s' ", box->byte_offset,
fprintf(stderr, "%li '%.*s' ", (unsigned long) box->byte_offset,
(int) box->length, box->text);
if (box->space)
fprintf(stderr, "space ");