Changeset 923e80b5c2a7372b98cbee47c01a078cfab1904c
- Timestamp:
- 05/08/08 22:30:28
(2 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1210278628 +0200
- git-parent:
[a7e8d944f93a414be8995d53bb9bcc92b00fbc19]
- git-author:
- Rafaël Carré <funman@videolan.org> 1210278384 +0200
- Message:
Don't use multiple lines macros in if conditions
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r27d483e |
r923e80b |
|
| 569 | 569 | |
|---|
| 570 | 570 | #define ReturnTrue \ |
|---|
| | 571 | do { \ |
|---|
| 571 | 572 | vlc_object_release( p_playlist ); \ |
|---|
| 572 | | return 1 |
|---|
| | 573 | return 1; \ |
|---|
| | 574 | } while(0) |
|---|
| 573 | 575 | |
|---|
| 574 | 576 | #define ReturnFalse \ |
|---|
| | 577 | do { \ |
|---|
| 575 | 578 | vlc_object_release( p_playlist ); \ |
|---|
| 576 | | return 0 |
|---|
| | 579 | return 0; \ |
|---|
| | 580 | } while(0) |
|---|
| 577 | 581 | |
|---|
| 578 | 582 | playlist_t *p_playlist = pl_Yield( p_intf ); |
|---|