drmmode: Add missing newlines at the end of log messages.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2010-07-01 21:58:43 +01:00
parent 690fbd1a64
commit f8778b66a9
1 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ drmmode_apply(xf86CrtcPtr crtc)
&drmmode_crtc->kmode);
if (ret) {
xf86DrvMsg(crtc->scrn->scrnIndex, X_ERROR,
"failed to set mode: %s", strerror(-ret));
"failed to set mode: %s\n", strerror(-ret));
ret = FALSE;
} else
ret = TRUE;
@ -457,7 +457,7 @@ drmmode_load_cursor_argb (xf86CrtcPtr crtc, CARD32 *image)
ret = dri_bo_subdata(drmmode_crtc->cursor, 0, 64*64*4, image);
if (ret)
xf86DrvMsg(crtc->scrn->scrnIndex, X_ERROR,
"failed to set cursor: %s", strerror(-ret));
"failed to set cursor: %s\n", strerror(-ret));
return;
}