mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-28 14:59:41 +03:00
fix type warning in LOG statement
svn path=/trunk/netsurf/; revision=6493
This commit is contained in:
parent
7a867aacc2
commit
71fd3e756c
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user