summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-07-26 00:01:58 +0000
committerIan Romanick <idr@us.ibm.com>2005-07-26 00:01:58 +0000
commite2f4c1e72976180cfbf2486236468e25f81ca431 (patch)
tree2e72cbd01ac015718e897af9f57273d55c6280cd /src
parentfdb59d2535d7d517a14f3d6489ba91f3dac3b99f (diff)
Famous last words: "This last change is so trivial, I don't even need to
compile-test it!" This commit fixes a dumb-dumb error by me. I broke the multi-line X_ERROR message into multiple xf86DrvMsg calls to get the formating correct in the log. However, I didn't bother to put in the correct punctuation when I did so.
Diffstat (limited to 'src')
-rw-r--r--src/mga_dri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mga_dri.c b/src/mga_dri.c
index bcaf03e..f562edc 100644
--- a/src/mga_dri.c
+++ b/src/mga_dri.c
@@ -1218,9 +1218,9 @@ Bool MGADRIScreenInit( ScreenPtr pScreen )
* new features of the 3.2 DRM).
*/
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
- "[drm] Direct rendering on PCI cards requires DRM version 3.2 or higher\n"
+ "[drm] Direct rendering on PCI cards requires DRM version 3.2 or higher\n");
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
- "[drm] and a recent client-side driver. Also make sure that 'OldDmaInit'\n"
+ "[drm] and a recent client-side driver. Also make sure that 'OldDmaInit'\n");
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"[drm] is not selected in xorg.conf.'\n");
return FALSE;