wined3d: Fix a typo in FIXME() messages

Andrey Gusev andrey.goosev at gmail.com
Sun May 1 03:55:27 CDT 2016


-------------- next part --------------
From 184d552438e68e855037aa1890b8c423b4e80fe5 Mon Sep 17 00:00:00 2001
Message-Id: <184d552438e68e855037aa1890b8c423b4e80fe5.1462091534.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sun, 1 May 2016 11:27:18 +0300
Subject: [PATCH] wined3d: Fix a typo in FIXME() messages

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 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..ac12e79 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";
     }
 }
-- 
2.5.5



More information about the wine-patches mailing list