aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-07 19:55:03 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-07 19:55:03 +0000
commit6150c2051e7cff869284de8d18928b070bf01096 (patch)
treef4b6b7928a0cc3f713c1ebad3d6556900c2b11d5
parent7d1276ff67bc8a03f1c62c10ed05dae87349f782 (diff)
Add newlines to debug error strings
git-svn-id: http://skia.googlecode.com/svn/trunk@2431 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--gpu/src/GrGpuFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpu/src/GrGpuFactory.cpp b/gpu/src/GrGpuFactory.cpp
index a7aa4d5a26..9498da21c3 100644
--- a/gpu/src/GrGpuFactory.cpp
+++ b/gpu/src/GrGpuFactory.cpp
@@ -37,13 +37,13 @@ GrGpu* GrGpu::Create(GrEngine engine, GrPlatform3DContext context3D) {
}
if (NULL == glInterface) {
#if GR_DEBUG
- GrPrintf("No GL interface provided!");
+ GrPrintf("No GL interface provided!\n");
#endif
return NULL;
}
if (!glInterface->validate(engine)) {
#if GR_DEBUG
- GrPrintf("Failed GL interface validation!");
+ GrPrintf("Failed GL interface validation!\n");
#endif
return NULL;
}