aboutsummaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2024-02-16 14:31:29 +0100
committerPierre Ossman <ossman@cendio.se>2024-06-19 16:39:07 +0200
commit5322b8ffcdaa8479093917729acc987672546592 (patch)
treeb5e5b2cb440338d9a4d53e103d3a7d9d01429ccb /unix
parentbc0461fd952e691d30fbadfd4c208318fa69ef09 (diff)
downloadtigervnc-5322b8ffcdaa8479093917729acc987672546592.tar.gz
tigervnc-5322b8ffcdaa8479093917729acc987672546592.zip
Add missing ErrorF() newlines
Diffstat (limited to 'unix')
-rw-r--r--unix/xserver/hw/vnc/xvnc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/xserver/hw/vnc/xvnc.c b/unix/xserver/hw/vnc/xvnc.c
index 16a28831..a953240d 100644
--- a/unix/xserver/hw/vnc/xvnc.c
+++ b/unix/xserver/hw/vnc/xvnc.c
@@ -670,14 +670,14 @@ vncRandRScreenSetSize(ScreenPtr pScreen,
ret = vncRandRCrtcSet(pScreen, crtc, NULL,
crtc->x, crtc->y, crtc->rotation, 0, NULL);
if (!ret)
- ErrorF("Warning: Unable to disable CRTC that is outside of new screen dimensions");
+ ErrorF("Warning: Unable to disable CRTC that is outside of new screen dimensions\n");
continue;
}
/* Just needs to be resized to a temporary mode */
mode = vncRandRModeGet(width - crtc->x, height - crtc->y);
if (mode == NULL) {
- ErrorF("Warning: Unable to create custom mode for %dx%d",
+ ErrorF("Warning: Unable to create custom mode for %dx%d\n",
width - crtc->x, height - crtc->y);
continue;
}
@@ -687,7 +687,7 @@ vncRandRScreenSetSize(ScreenPtr pScreen,
crtc->numOutputs, crtc->outputs);
RRModeDestroy(mode);
if (!ret)
- ErrorF("Warning: Unable to crop CRTC to new screen dimensions");
+ ErrorF("Warning: Unable to crop CRTC to new screen dimensions\n");
}
return TRUE;