Skip to content

Commit

Permalink
mir: Fixed typo in error messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Apr 9, 2017
1 parent f6eb23a commit 2bf79c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/video/mir/SDL_mirframebuffer.c
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions src/video/mir/SDL_mirwindow.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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));
}

Expand All @@ -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);
}
}
Expand Down

0 comments on commit 2bf79c2

Please sign in to comment.