mir: Fixed typo in error messages.

Philipp Wiesemann 2017-04-09 23:00:54 +02:00
parent f6eb23a617
commit 2bf79c2e0e
2 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ MIR_CreateWindowFramebuffer(_THIS, SDL_Window* window, Uint32* format,
mir_data->software = SDL_TRUE;
if (MIR_CreateWindow(_this, window) < 0)
return SDL_SetError("Failed to created a mir window.");
return SDL_SetError("Failed to create a mir window.");
*format = MIR_GetSDLPixelFormat(mir_data->pixel_format);
if (*format == SDL_PIXELFORMAT_UNKNOWN)

View File

@ -41,7 +41,7 @@ IsMirWindowValid(MIR_Window* mir_window)
{
if (!MIR_mir_window_is_valid(mir_window->window)) {
const char* error = MIR_mir_window_get_error_message(mir_window->window);
return SDL_SetError("Failed to created a mir surface: %s", error);
return SDL_SetError("Failed to create a mir surface: %s", error);
}
return 1;
@ -134,7 +134,7 @@ MIR_CreateWindow(_THIS, SDL_Window* window)
MIR_mir_window_spec_release(spec);
if (!MIR_mir_window_is_valid(mir_window->window)) {
return SDL_SetError("Failed to created a mir surface: %s",
return SDL_SetError("Failed to create a mir surface: %s",
MIR_mir_window_get_error_message(mir_window->window));
}
@ -146,7 +146,7 @@ MIR_CreateWindow(_THIS, SDL_Window* window)
mir_window->egl_surface = SDL_EGL_CreateSurface(_this, egl_native_window);
if (mir_window->egl_surface == EGL_NO_SURFACE) {
return SDL_SetError("Failed to created a window surface %p",
return SDL_SetError("Failed to create a window surface %p",
_this->egl_data->egl_display);
}
}