Il lunedì 31 agosto 2009 18:05:04 Erik Hovland ha scritto:
> I hate to bother, but could you be more specific? Does it mean
> you prefer 'if(x)' over if( x )? The empty line I get.

Indeed

>;
>
>    if( dvd_file ) {
> -    if( dvd_file->dvd->isImageFile ) {
> -      ;
> -    } else {
> +    if( !dvd_file->dvd->isImageFile ) {

for example the above line reads much better to me as:

 if(!dvd_file->dvd->isImageFile) {
...
}
_______________________________________________
DVDnav-discuss mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/dvdnav-discuss

Reply via email to