fix type warning in LOG statement

svn path=/trunk/netsurf/; revision=6493
This commit is contained in:
Vincent Sanders 2009-02-14 14:16:46 +00:00
parent 7a867aacc2
commit 71fd3e756c
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ static bool fb_16bpp_path(const float *p, unsigned int n, colour fill, float wid
colour c, const float transform[6])
{
LOG(("%f, %d, 0x%lx, %f, 0x%lx, %f",
*p, n, fill, width, (unsigned long)c, *transform));
*p, n, (unsigned long)fill, width, (unsigned long)c, *transform));
return true;
}