summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-03-01 16:59:14 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-03-03 16:53:11 +1000
commitd84a2f855da9fd293e984084168c1e27f5a5115c (patch)
treefcc97446aada5deb8cae4915d8aa9fda1a100d7e
parente0ed9f16d0ab871f3209837f54055446503c4108 (diff)
xfree86: Add linebreak to two debug statements.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--hw/xfree86/common/xf86Config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86Config.c b/hw/xfree86/common/xf86Config.c
index aa4ea0598..b9ab11a32 100644
--- a/hw/xfree86/common/xf86Config.c
+++ b/hw/xfree86/common/xf86Config.c
@@ -1670,7 +1670,7 @@ configLayout(serverLayoutPtr servlayoutp, XF86ConfLayoutPtr conf_layout,
idp = (XF86ConfInactivePtr)idp->list.next;
}
#ifdef DEBUG
- ErrorF("Found %d inactive devices in the layout section %s",
+ ErrorF("Found %d inactive devices in the layout section %s\n",
count, conf_layout->lay_identifier);
#endif
gdp = xnfalloc((count + 1) * sizeof(GDevRec));
@@ -1695,7 +1695,7 @@ configLayout(serverLayoutPtr servlayoutp, XF86ConfLayoutPtr conf_layout,
irp = (XF86ConfInputrefPtr)irp->list.next;
}
#ifdef DEBUG
- ErrorF("Found %d input devices in the layout section %s",
+ ErrorF("Found %d input devices in the layout section %s\n",
count, conf_layout->lay_identifier);
#endif
indp = xnfcalloc((count + 1), sizeof(IDevPtr));