mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 18:52:39 +03:00
Hopefully quash LOG compile errors in Windows
This commit is contained in:
parent
0ad2f2de6f
commit
a1dc9ab55f
@ -580,7 +580,8 @@ line(const struct redraw_context *ctx,
|
||||
const plot_style_t *style,
|
||||
const struct rect *line)
|
||||
{
|
||||
NSLOG(plot, DEEPDEBUG, "from %d,%d to %d,%d", x0, y0, x1, y1);
|
||||
NSLOG(plot, DEEPDEBUG, "from %d,%d to %d,%d",
|
||||
line->x0, line->y0, line->x1, line->y1);
|
||||
|
||||
/* ensure the plot HDC is set */
|
||||
if (plot_hdc == NULL) {
|
||||
|
@ -1883,7 +1883,7 @@ nserror win32_window_set_scroll(struct gui_window *gw, const struct rect *rect)
|
||||
|
||||
NSLOG(netsurf, DEEPDEBUG,
|
||||
"requestscroll x,y:%d,%d",
|
||||
w->requestscrollx, w->requestscrolly);
|
||||
gw->requestscrollx, gw->requestscrolly);
|
||||
|
||||
/* set the vertical scroll offset */
|
||||
si.cbSize = sizeof(si);
|
||||
|
Loading…
Reference in New Issue
Block a user