From f16ee218845ec48940ea457b921d34896d80a807 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 10 May 2009 16:25:24 -0700 Subject: [PATCH] Fix "Unkown" typo in two FatalError messages Signed-off-by: Alan Coopersmith --- src/i830_render.c | 2 +- src/i915_render.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {