diff --git a/src/i830_render.c b/src/i830_render.c index 4ca4e338..4bee5ba0 100644 --- a/src/i830_render.c +++ b/src/i830_render.c @@ -285,7 +285,7 @@ i830_texture_setup(PicturePtr pPict, PixmapPtr pPix, int unit) wrap_mode = TEXCOORDMODE_MIRROR; break; default: - FatalError("Unkown repeat type %d\n", pPict->repeatType); + FatalError("Unknown repeat type %d\n", pPict->repeatType); } switch (pPict->filter) { diff --git a/src/i915_render.c b/src/i915_render.c index 268dd8a1..ab04e9c9 100644 --- a/src/i915_render.c +++ b/src/i915_render.c @@ -270,7 +270,7 @@ i915_texture_setup(PicturePtr pPict, PixmapPtr pPix, int unit) wrap_mode = TEXCOORDMODE_MIRROR; break; default: - FatalError("Unkown repeat type %d\n", pPict->repeatType); + FatalError("Unknown repeat type %d\n", pPict->repeatType); } switch (pPict->filter) {