summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2009-05-10 16:25:24 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-05-10 16:25:24 -0700
commitf16ee218845ec48940ea457b921d34896d80a807 (patch)
tree843fbfbefd6a5b37af58e02bc4f223db773d4f31
parent8d27247829fe4f55691ce68f9f4b14810fb34b32 (diff)
Fix "Unkown" typo in two FatalError messages
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r--src/i830_render.c2
-rw-r--r--src/i915_render.c2
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) {