modesetting: typo in drmmode_display.c -- ',' instead of ';' at end of line
This seems like a simple typo to me; thanks to C it isn't caught by the compiler. Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
427f8bc009
commit
0cf15714e1
|
@ -1870,7 +1870,7 @@ drmmode_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height)
|
||||||
}
|
}
|
||||||
|
|
||||||
pPixData = drmmode_bo_map(drmmode, &drmmode_crtc->rotate_bo);
|
pPixData = drmmode_bo_map(drmmode, &drmmode_crtc->rotate_bo);
|
||||||
rotate_pitch = drmmode_bo_get_pitch(&drmmode_crtc->rotate_bo),
|
rotate_pitch = drmmode_bo_get_pitch(&drmmode_crtc->rotate_bo);
|
||||||
|
|
||||||
rotate_pixmap = drmmode_create_pixmap_header(scrn->pScreen,
|
rotate_pixmap = drmmode_create_pixmap_header(scrn->pScreen,
|
||||||
width, height,
|
width, height,
|
||||||
|
|
Loading…
Reference in New Issue