intel: remove extra \n from warning string

(cherry picked from commit 42e9bde0fa)
This commit is contained in:
Brian Paul
2009-06-08 14:41:54 -06:00
committed by Ian Romanick
parent d446d3acac
commit 39366ed995

View File

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