Mercurial > mplayer.hg
changeset 32953:5e58be6ff558
Cosmetic: Separate #endif from following line.
An #ifdef...#endif block is easier to spot that way.
author | ib |
---|---|
date | Mon, 07 Mar 2011 20:09:30 +0000 |
parents | 1aeeba137de9 |
children | 682b370ac832 |
files | gui/mplayer/play.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/mplayer/play.c Mon Mar 07 19:35:39 2011 +0000 +++ b/gui/mplayer/play.c Mon Mar 07 20:09:30 2011 +0000 @@ -321,13 +321,13 @@ #ifdef CONFIG_DVDREAD case STREAMTYPE_DVD: break; +#endif -#endif #ifdef CONFIG_VCD case STREAMTYPE_VCD: break; +#endif -#endif default: curr = gtkSet(gtkGetCurrPlItem, 0, NULL); @@ -371,8 +371,8 @@ guiIntfStruct.Track = guiIntfStruct.DVD.current_title; break; +#endif -#endif #ifdef CONFIG_VCD case STREAMTYPE_VCD: if (--guiIntfStruct.Track == 0) { @@ -380,8 +380,8 @@ stop = 1; } break; +#endif -#endif default: prev = gtkSet(gtkGetPrevPlItem, 0, NULL); @@ -425,8 +425,8 @@ guiIntfStruct.Track = guiIntfStruct.DVD.current_title; break; +#endif -#endif #ifdef CONFIG_VCD case STREAMTYPE_VCD: if (++guiIntfStruct.Track > guiIntfStruct.VCDTracks) { @@ -434,8 +434,8 @@ stop = 1; } break; +#endif -#endif default: next = gtkSet(gtkGetNextPlItem, 0, NULL);