Fix "Unkown" typo in two FatalError messages
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
This commit is contained in:
parent
8d27247829
commit
f16ee21884
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue