[vlc-commits] iOS: no tabs, in source-code

Jean-Baptiste Kempf git at videolan.org
Sat Feb 9 16:24:07 CET 2013


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Feb  9 16:23:52 2013 +0100| [b302bf06bc3c56ae69efae71f57e6cd5917e6f2c] | committer: Jean-Baptiste Kempf

iOS: no tabs, in source-code

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b302bf06bc3c56ae69efae71f57e6cd5917e6f2c
---

 modules/video_output/ios.m |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/video_output/ios.m b/modules/video_output/ios.m
index 69b586b..b513911 100644
--- a/modules/video_output/ios.m
+++ b/modules/video_output/ios.m
@@ -157,11 +157,11 @@ static int Open(vlc_object_t *this)
     sys->gl.lock = OpenglClean; // We don't do locking, but sometimes we need to cleanup the framebuffer
     sys->gl.unlock = NULL;
     sys->gl.swap = OpenglSwap;
-	sys->gl.getProcAddress = OurGetProcAddress;
+    sys->gl.getProcAddress = OurGetProcAddress;
     sys->gl.sys = sys;
 
-	sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl);
-	if (!sys->vgl)
+    sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl);
+    if (!sys->vgl)
     {
         sys->gl.sys = NULL;
         goto error;
@@ -242,7 +242,7 @@ static void PictureDisplay(vout_display_t *vd, picture_t *pic, subpicture_t *sub
     vout_display_opengl_Display(sys->vgl, &vd->fmt );
     picture_Release (pic);
     sys->has_first_frame = true;
-	(void)subpicture;
+    (void)subpicture;
 }
 
 static int Control (vout_display_t *vd, int query, va_list ap)



More information about the vlc-commits mailing list