intel: remove extra \n from warning string

This commit is contained in:
Brian Paul
2009-06-08 14:41:54 -06:00
parent a81097c545
commit 42e9bde0fa

View File

@@ -247,7 +247,7 @@ intel_get_param(__DRIscreenPrivate *psp, int param, int *value)
ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp)); ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
if (ret) { if (ret) {
_mesa_warning(NULL, "drm_i915_getparam: %d\n", ret); _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
return GL_FALSE; return GL_FALSE;
} }