[vlc-devel] commit: vout_fb: cosmetics, else on the same line than closing } ( Rafaël Carré )
git version control
git at videolan.org
Tue Dec 15 13:04:16 CET 2009
vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Tue Dec 15 13:03:58 2009 +0100| [0ab937426cab742dfcfce6724e2f62801b32a893] | committer: Rafaël Carré
vout_fb: cosmetics, else on the same line than closing }
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ab937426cab742dfcfce6724e2f62801b32a893
---
modules/video_output/fb.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c
index df8eba1..b394cb0 100644
--- a/modules/video_output/fb.c
+++ b/modules/video_output/fb.c
@@ -234,8 +234,7 @@ static int Open(vlc_object_t *object)
msg_Warn(vd, "chroma %s invalid, using default", chroma);
free(chroma);
- }
- else
+ } else
sys->chroma = 0;
/* tty handling */
@@ -259,8 +258,7 @@ static int Open(vlc_object_t *object)
if (sys->chroma) {
fmt.i_chroma = sys->chroma;
- }
- else {
+ } else {
/* Assume RGB */
msg_Dbg(vd, "%d bppd", sys->var_info.bits_per_pixel);
More information about the vlc-devel
mailing list