avilib: avoid compiler warnings about inconsistent indentation

This commit is contained in:
Moritz Bunkus 2021-05-31 16:49:16 +02:00
parent c198409779
commit 5562b95c70
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85

View File

@ -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) { \