Module: wine Branch: master Commit: 05132fa73561282589b56f123aae994cdd0a177d URL: http://source.winehq.org/git/wine.git/?a=commit;h=05132fa73561282589b56f123a... Author: Andrey Gusev <andrey.goosev(a)gmail.com> Date: Mon May 9 18:09:43 2016 +0300 wined3d: Fix a typo in FIXME() messages. Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/wined3d/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/wined3d/utils.c b/dlls/wined3d/utils.c index e2e3ec9..70a4b03 100644 --- a/dlls/wined3d/utils.c +++ b/dlls/wined3d/utils.c @@ -3875,7 +3875,7 @@ const char *debug_d3dtexturefiltertype(enum wined3d_texture_filter_type filter_t D3DTEXTUREFILTERTYPE_TO_STR(WINED3D_TEXF_GAUSSIAN_QUAD); #undef D3DTEXTUREFILTERTYPE_TO_STR default: - FIXME("Unrecognied texture filter type 0x%08x.\n", filter_type); + FIXME("Unrecognized texture filter type 0x%08x.\n", filter_type); return "unrecognized"; } } @@ -4113,7 +4113,7 @@ const char *debug_fbostatus(GLenum status) { FBOSTATUS_TO_STR(GL_FRAMEBUFFER_UNDEFINED); #undef FBOSTATUS_TO_STR default: - FIXME("Unrecognied FBO status 0x%08x\n", status); + FIXME("Unrecognized FBO status 0x%08x.\n", status); return "unrecognized"; } } @@ -4131,7 +4131,7 @@ const char *debug_glerror(GLenum error) { GLERROR_TO_STR(GL_INVALID_FRAMEBUFFER_OPERATION); #undef GLERROR_TO_STR default: - FIXME("Unrecognied GL error 0x%08x\n", error); + FIXME("Unrecognized GL error 0x%08x.\n", error); return "unrecognized"; } }