eglglessink: Fix indention

This commit is contained in:
Sebastian Dröge 2012-12-30 11:32:29 +01:00
parent 6140bc7f8c
commit 6748198668
2 changed files with 4 additions and 3 deletions

View file

@ -853,7 +853,8 @@ got_egl_error (const char *wtf)
EGLint error;
if ((error = eglGetError ()) != EGL_SUCCESS) {
GST_CAT_DEBUG (GST_CAT_DEFAULT, "EGL ERROR: %s returned 0x%04x", wtf, error);
GST_CAT_DEBUG (GST_CAT_DEFAULT, "EGL ERROR: %s returned 0x%04x", wtf,
error);
return TRUE;
}
@ -1670,7 +1671,7 @@ gst_eglglessink_queue_object (GstEglGlesSink * eglglessink, GstMiniObject * obj)
if (eglglessink->last_flow != GST_FLOW_OK)
return eglglessink->last_flow;
item = g_slice_new0 (GstDataQueueItem);
item->object = obj ? gst_mini_object_ref (obj) : NULL;

View file

@ -126,7 +126,7 @@ platform_destroy_native_window (EGLNativeDisplayType display,
EGLNativeWindowType
platform_create_native_window (gint width, gint height, gpointer * window_data)
{
fbdev_window * w = g_slice_new0 (fbdev_window);
fbdev_window *w = g_slice_new0 (fbdev_window);
w->width = width;
w->height = height;