Skip to content

Commit 4d753b0

Browse files
committed
Use C style comments
1 parent 8f3da1b commit 4d753b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/formats_i.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int lsx_check_read_params(sox_format_t * ft, unsigned channels,
9595
*/
9696
size_t lsx_readbuf(sox_format_t * ft, void *buf, size_t len)
9797
{
98-
clearerr((FILE*)ft->fp); // So that we can read again from a file being written
98+
clearerr((FILE*)ft->fp); /* So that we can read again from a file being written */
9999
size_t ret = fread(buf, (size_t) 1, len, (FILE*)ft->fp);
100100
if (ret != len && ferror((FILE*)ft->fp))
101101
lsx_fail_errno(ft, errno, "lsx_readbuf");

0 commit comments

Comments
 (0)