mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 12:27:21 +00:00
avilib: avoid compiler warnings about inconsistent indentation
This commit is contained in:
parent
c198409779
commit
5562b95c70
@ -755,10 +755,10 @@ void AVI_set_audio(avi_t *AVI, int channels, long rate, int bits, int format, lo
|
||||
}
|
||||
|
||||
#define OUT4CC(s) \
|
||||
if(nhb<=HEADERBYTES-4) memcpy(AVI_header+nhb,s,4); nhb += 4
|
||||
if(nhb<=HEADERBYTES-4) { memcpy(AVI_header+nhb,s,4); } nhb += 4
|
||||
|
||||
#define OUTLONG(n) \
|
||||
if(nhb<=HEADERBYTES-4) long2str(AVI_header+nhb,n); nhb += 4
|
||||
if(nhb<=HEADERBYTES-4) { long2str(AVI_header+nhb,n); } nhb += 4
|
||||
|
||||
#define OUTSHRT(n) \
|
||||
if(nhb<=HEADERBYTES-2) { \
|
||||
|
Loading…
Reference in New Issue
Block a user