Add missing newlines to new debug output.

This commit is contained in:
Eric Anholt 2006-12-06 10:12:49 -08:00
parent 236c53be5d
commit 727bf1cbf7
1 changed files with 2 additions and 2 deletions

View File

@ -352,9 +352,9 @@ void i830CompareRegsToSnapshot(ScrnInfoPtr pScrn)
i830_snapshot[i].reg,
val);
xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
"%s before: %s", i830_snapshot[i].name, before);
"%s before: %s\n", i830_snapshot[i].name, before);
xf86DrvMsg(pScrn->scrnIndex, X_WARNING,
"%s after: %s", i830_snapshot[i].name, after);
"%s after: %s\n", i830_snapshot[i].name, after);
}
}