diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-08-26 22:27:34 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-08-26 22:27:34 +0200 |
commit | 2efbc687fcc0d05dca241e4079d9236d9cce0dde (patch) | |
tree | 85b311579e46221674bd668991cd78e53fd6dbd0 | |
parent | 17153c794d532f27a4248c3f64eba95ede62be87 (diff) |
Added a couple of missing newlines.
-rw-r--r-- | src/mga_exa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mga_exa.c b/src/mga_exa.c index 2df38bc..9c1572d 100644 --- a/src/mga_exa.c +++ b/src/mga_exa.c @@ -347,7 +347,7 @@ mgaCheckComposite(int op, PicturePtr pSrcPict, PicturePtr pMaskPict, PicturePtr pDstPict) { if (op >= sizeof(mgaBlendOp) / sizeof(mgaBlendOp[0])) { - DEBUG_MSG(("unsupported op %x", op)); + DEBUG_MSG(("unsupported op %x\n", op)); return FALSE; } @@ -356,7 +356,7 @@ mgaCheckComposite(int op, PicturePtr pSrcPict, PicturePtr pMaskPict, if (pMaskPict) { if (PICT_FORMAT_A(pMaskPict->format) == 0) { - DEBUG_MSG(("Mask without alpha unsupported")); + DEBUG_MSG(("Mask without alpha unsupported\n")); return FALSE; } @@ -364,14 +364,14 @@ mgaCheckComposite(int op, PicturePtr pSrcPict, PicturePtr pMaskPict, return FALSE; if (pMaskPict->componentAlpha) { - DEBUG_MSG(("Component alpha unsupported")); + DEBUG_MSG(("Component alpha unsupported\n")); return FALSE; } } switch (pDstPict->format) { case PICT_a8: - DEBUG_MSG(("render to A8 unsupported")); + DEBUG_MSG(("render to A8 unsupported\n")); return FALSE; default: break; |