Fix warning in clutter-backend-sdl
Removed direct use of SDL_GetError as a format string for g_set_error to fix a compiler warning.
This commit is contained in:
parent
24ce193836
commit
67523ddc6e
@ -47,7 +47,7 @@ clutter_backend_sdl_post_parse (ClutterBackend *backend,
|
|||||||
{
|
{
|
||||||
g_set_error (error, CLUTTER_INIT_ERROR,
|
g_set_error (error, CLUTTER_INIT_ERROR,
|
||||||
CLUTTER_INIT_ERROR_BACKEND,
|
CLUTTER_INIT_ERROR_BACKEND,
|
||||||
SDL_GetError ());
|
"%s", SDL_GetError ());
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user