Skip to content

Commit

Permalink
SDL_os2video.c: silenced -Wempty-body warning, along with minor tidy-up.
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Jul 8, 2022
1 parent 531647e commit 2f21648
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/video/os2/SDL_os2video.c
Expand Up @@ -855,8 +855,9 @@ static int OS2_CreateWindowFrom(_THIS, SDL_Window *window, const void *data)
if (cbText != 0)
window->title = OS2_SysToUTF8(pszText);

if (pszText != NULL)
if (pszText != NULL) {
SDL_stack_free(pszText);
}

/* Set SDL-window flags */
window->flags &= ~(SDL_WINDOW_SHOWN | SDL_WINDOW_BORDERLESS |
Expand Down Expand Up @@ -1666,18 +1667,17 @@ static SDL_VideoDevice *OS2VMAN_CreateDevice(int devindex)
}


/* Both bootstraps for DIVE and VMAN are uing same function OS2_CreateDevice().
/* DIVE and VMAN bootstraps both call the same OS2_CreateDevice() function.
* Video output system will be selected in OS2_VideoInit() by driver name. */
VideoBootStrap OS2DIVE_bootstrap =
{
OS2DRIVER_NAME_DIVE, "OS/2 video driver",
OS2DIVE_CreateDevice
OS2DRIVER_NAME_DIVE, "OS/2 video driver",
OS2DIVE_CreateDevice
};

VideoBootStrap OS2VMAN_bootstrap =
{
OS2DRIVER_NAME_VMAN, "OS/2 video driver",
OS2VMAN_CreateDevice
OS2DRIVER_NAME_VMAN, "OS/2 video driver",
OS2VMAN_CreateDevice
};

#endif /* SDL_VIDEO_DRIVER_OS2 */
Expand Down

0 comments on commit 2f21648

Please sign in to comment.