diff options
Diffstat (limited to 'sbc/sbcdec.c')
| -rw-r--r-- | sbc/sbcdec.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/sbc/sbcdec.c b/sbc/sbcdec.c index 462663ab..dfe092f5 100644 --- a/sbc/sbcdec.c +++ b/sbc/sbcdec.c @@ -143,7 +143,7 @@ static void decode(char *filename, char *output, int tofile)  		au_hdr.channels    = BE_INT(channels);  		written = write(ad, &au_hdr, sizeof(au_hdr)); -		if (written < sizeof(au_hdr)) { +		if (written < (int) sizeof(au_hdr)) {  			fprintf(stderr, "Failed to write header\n");  			goto close;  		} | 
