Francois Gouget : dxgi/tests: Some spelling fixes in ok() messages.
Module: wine Branch: master Commit: 442bbe921c7cf88c736f670cb91c8040eaa36ee6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=442bbe921c7cf88c736f670cb9... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Jan 7 14:42:07 2017 +0100 dxgi/tests: Some spelling fixes in ok() messages. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/dxgi/tests/device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/dxgi/tests/device.c b/dlls/dxgi/tests/device.c index d9cedff..db4c57e 100644 --- a/dlls/dxgi/tests/device.c +++ b/dlls/dxgi/tests/device.c @@ -1260,7 +1260,7 @@ static void test_get_containing_output(void) output_count = 0; while (IDXGIAdapter_EnumOutputs(adapter, output_count, &output) != DXGI_ERROR_NOT_FOUND) { - ok(SUCCEEDED(hr), "Failed to enumarate output %u, hr %#x.\n", output_count, hr); + ok(SUCCEEDED(hr), "Failed to enumerate output %u, hr %#x.\n", output_count, hr); IDXGIOutput_Release(output); ++output_count; } @@ -1309,7 +1309,7 @@ static void test_get_containing_output(void) output_idx = 0; while ((hr = IDXGIAdapter_EnumOutputs(adapter, output_idx, &output)) != DXGI_ERROR_NOT_FOUND) { - ok(SUCCEEDED(hr), "Failed to enumarate output %u, hr %#x.\n", output_idx, hr); + ok(SUCCEEDED(hr), "Failed to enumerate output %u, hr %#x.\n", output_idx, hr); hr = IDXGIOutput_GetDesc(output, &output_desc); ok(SUCCEEDED(hr), "GetDesc failed, hr %#x.\n", hr); @@ -1708,7 +1708,7 @@ static void test_default_fullscreen_target_output(void) output_idx = 0; while ((hr = IDXGIAdapter_EnumOutputs(adapter, output_idx, &output)) != DXGI_ERROR_NOT_FOUND) { - ok(SUCCEEDED(hr), "Failed to enumarate output %u, hr %#x.\n", output_idx, hr); + ok(SUCCEEDED(hr), "Failed to enumerate output %u, hr %#x.\n", output_idx, hr); hr = IDXGIOutput_GetDesc(output, &output_desc); ok(SUCCEEDED(hr), "GetDesc failed, hr %#x.\n", hr);
participants (1)
-
Alexandre Julliard